Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit e39d459

Browse files
committed
Dockerfile: use dumb-init
1 parent 6f22140 commit e39d459

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ RUN curl -sL "https://releases.hashicorp.com/packer/0.10.1/packer_0.10.1_linux_a
1919
&& unzip packer.zip \
2020
&& mv packer /usr/local/bin
2121

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+
2226
ADD . /src
2327

2428
RUN cd /src && make install
29+

0 commit comments

Comments
 (0)