We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f22140 commit e39d459Copy full SHA for e39d459
Dockerfile
@@ -19,6 +19,11 @@ RUN curl -sL "https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_linux_a
19
&& unzip packer.zip \
20
&& mv packer /usr/local/bin
21
22
+RUN curl -sL -o /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.1.3/dumb-init_1.1.3_amd64 && chmod +x /usr/local/bin/dumb-init
23
+
24
+ENTRYPOINT ["/usr/local/bin/dumb-init"]
25
26
ADD . /src
27
28
RUN cd /src && make install
29
0 commit comments