File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ If you don't have an internal apt server, you can use `dpkg -i` to install the
174
174
One possibility is with the following commands in your Dockerfile:
175
175
176
176
``` Dockerfile
177
- RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.4 /dumb-init_1.2.4_amd64 .deb
177
+ RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.5 /dumb-init_1.2.5_amd64 .deb
178
178
RUN dpkg -i dumb-init_*.deb
179
179
```
180
180
@@ -185,7 +185,7 @@ Since dumb-init is released as a statically-linked binary, you can usually just
185
185
plop it into your images. Here's an example of doing that in a Dockerfile:
186
186
187
187
``` Dockerfile
188
- RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.4 /dumb-init_1.2.4_x86_64
188
+ RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.5 /dumb-init_1.2.5_x86_64
189
189
RUN chmod +x /usr/local/bin/dumb-init
190
190
```
191
191
You can’t perform that action at this time.
0 commit comments