aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJordan Sokolic <oofnik@gmail.com>2020-10-11 09:25:34 +0300
committerJordan Sokolic <oofnik@gmail.com>2020-10-11 09:25:34 +0300
commit60de9d5caa39cbd3abc62b3f8954a36c895e60a9 (patch)
tree1f68f8ab2dbce48ebd90e66d7f9ed62140dc7492 /Dockerfile
parent2995606f4d376535f20508fd36b9d09227117577 (diff)
use tini init
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index ffbb47b..fd3af68 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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