diff options
author | Jordan Sokolic <oofnik@gmail.com> | 2020-10-11 09:25:34 +0300 |
---|---|---|
committer | Jordan Sokolic <oofnik@gmail.com> | 2020-10-11 09:25:34 +0300 |
commit | 60de9d5caa39cbd3abc62b3f8954a36c895e60a9 (patch) | |
tree | 1f68f8ab2dbce48ebd90e66d7f9ed62140dc7492 /Dockerfile | |
parent | 2995606f4d376535f20508fd36b9d09227117577 (diff) |
use tini init
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4,7 +4,8 @@ RUN apk update && apk add \ autoconf \ automake \ make \ - gcc + gcc \ + tini COPY . /build WORKDIR /build RUN autoreconf -fi && ./configure && make @@ -12,5 +13,5 @@ RUN make DESTDIR=/opt install FROM alpine COPY --from=build /opt / -COPY docker-entrypoint.sh / -ENTRYPOINT ["/docker-entrypoint.sh"]
\ No newline at end of file +COPY --from=build /sbin/tini /sbin/tini +ENTRYPOINT ["/sbin/tini", "/usr/local/bin/ptunnel-ng"]
\ No newline at end of file |