Replace wget URLs for v1.2.5

This commit is contained in:
Chris Kuehl 2021-02-02 15:53:39 -08:00
parent 89c1502b9d
commit 57f7eebef6

View file

@ -174,7 +174,7 @@ If you don't have an internal apt server, you can use `dpkg -i` to install the
One possibility is with the following commands in your Dockerfile: One possibility is with the following commands in your Dockerfile:
```Dockerfile ```Dockerfile
RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.4/dumb-init_1.2.4_amd64.deb RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.5/dumb-init_1.2.5_amd64.deb
RUN dpkg -i dumb-init_*.deb RUN dpkg -i dumb-init_*.deb
``` ```
@ -185,7 +185,7 @@ Since dumb-init is released as a statically-linked binary, you can usually just
plop it into your images. Here's an example of doing that in a Dockerfile: plop it into your images. Here's an example of doing that in a Dockerfile:
```Dockerfile ```Dockerfile
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 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
RUN chmod +x /usr/local/bin/dumb-init RUN chmod +x /usr/local/bin/dumb-init
``` ```