We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0f3699 commit 20ccef8Copy full SHA for 20ccef8
Dockerfile
@@ -1,13 +1,16 @@
1
FROM debian:stretch-slim
2
3
-ENV DUMB_INIT_VERSION 1.2.1
+ENV DUMB_INIT_VERSION 1.2.2
4
5
COPY bin/ /usr/local/bin/
6
7
RUN set -x && \
8
- clean-install procps curl ca-certificates && \
+ clean-install \
9
+ ca-certificates \
10
+ curl \
11
+ procps && \
12
curl -sL https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_amd64 -o /usr/local/bin/dumb-init && \
13
chmod +x /usr/local/bin/dumb-init && \
- clean-uninstall curl ca-certificates
14
+ clean-uninstall curl
15
16
ENTRYPOINT ["/usr/local/bin/dumb-init"]
0 commit comments