You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file.
5
5
6
6
This changelog was automatically generated using [Caretaker](https://github.com/DevelopersToolbox/caretaker) by [Wolf Software](https://github.com/WolfSoftware)
- Update version-grabber to include && in the output to make auto-generation easier [`[head]`](https://github.com/DockerToolbox/version-helper/commit/)
- Add code to ignore packages that have no version [`[head]`](https://github.com/DockerToolbox/version-helper/commit/)
18
+
- Add code to ignore packages that have no version [`[acd22ac]`](https://github.com/DockerToolbox/version-helper/commit/acd22ac6dc488fd50717b97b7a6d578d84ac7532)
Copy file name to clipboardExpand all lines: README.md
+16-8Lines changed: 16 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,8 @@ RUN apk update && \
105
105
curl=7.74.0-r0 \
106
106
git=2.30.1-r0 \
107
107
openssl-dev=1.1.1j-r0 \
108
-
wget=1.21.1-r1
108
+
wget=1.21.1-r1 \
109
+
&& \
109
110
```
110
111
111
112
@@ -118,7 +119,8 @@ RUN yum makecache && \
118
119
curl-7.61.1 \
119
120
git-2.23.3 \
120
121
openssl-devel-1.0.2k \
121
-
wget-1.14
122
+
wget-1.14 \
123
+
&& \
122
124
```
123
125
124
126
### Centos
@@ -130,7 +132,8 @@ RUN yum makecache && \
130
132
curl-7.61.1 \
131
133
git-2.27.0 \
132
134
openssl-devel-1.1.1g \
133
-
wget-1.19.5
135
+
wget-1.19.5 \
136
+
&& \
134
137
```
135
138
136
139
### Debian
@@ -142,7 +145,8 @@ RUN apt-get update && \
142
145
curl=7.64.0-4+deb10u1 \
143
146
git=1:2.20.1-2+deb10u3 \
144
147
libssl-dev=1.1.1d-0+deb10u5 \
145
-
wget=1.20.1-1.1
148
+
wget=1.20.1-1.1 \
149
+
&& \
146
150
```
147
151
148
152
### Ubuntu
@@ -154,7 +158,8 @@ RUN apt-get update && \
154
158
curl=7.68.0-1ubuntu2.4 \
155
159
git=1:2.25.1-1ubuntu3 \
156
160
libssl-dev=1.1.1f-1ubuntu2.2 \
157
-
wget=1.20.3-1ubuntu1
161
+
wget=1.20.3-1ubuntu1 \
162
+
&& \
158
163
```
159
164
160
165
The output is a [hadolint](https://github.com/TravisToolbox/hadolint) compliant piece of code that you can add directly to your Dockerfile, it handles the formating of the version as again different OSs require different formats.
@@ -172,7 +177,8 @@ RUN apt-get update && \
172
177
curl=7.47.0-1ubuntu2.18 \
173
178
git=1:2.7.4-0ubuntu1.9 \
174
179
libssl-dev=1.0.2g-1ubuntu4.19 \
175
-
wget=1.17.1-1ubuntu1.5
180
+
wget=1.17.1-1ubuntu1.5 \
181
+
&& \
176
182
```
177
183
178
184
**Ubuntu 18.04**
@@ -184,7 +190,8 @@ RUN apt-get update && \
184
190
curl=7.58.0-2ubuntu3.12 \
185
191
git=1:2.17.1-1ubuntu0.7 \
186
192
libssl-dev=1.1.1-1ubuntu2.1~18.04.8 \
187
-
wget=1.19.4-1ubuntu2.2
193
+
wget=1.19.4-1ubuntu2.2 \
194
+
&& \
188
195
```
189
196
190
197
**Ubuntu 20.04**
@@ -196,7 +203,8 @@ RUN apt-get update && \
196
203
curl=7.68.0-1ubuntu2.4 \
197
204
git=1:2.25.1-1ubuntu3 \
198
205
libssl-dev=1.1.1f-1ubuntu2.2 \
199
-
wget=1.20.3-1ubuntu1
206
+
wget=1.20.3-1ubuntu1 \
207
+
&& \
200
208
```
201
209
202
210
It should be very clear to see the different versions for each of the packages.
0 commit comments