From 59fdd9ed23c4e3606da8650b7b4a9bf36b551f14 Mon Sep 17 00:00:00 2001 From: KF Date: Tue, 12 Sep 2023 17:54:23 +0800 Subject: [PATCH] UPD: changes alpine version to latest --- alpine/dante/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/alpine/dante/Dockerfile b/alpine/dante/Dockerfile index 80e04c4..7bf5900 100644 --- a/alpine/dante/Dockerfile +++ b/alpine/dante/Dockerfile @@ -1,8 +1,10 @@ -FROM alpine:3.16 +FROM alpine:latest LABEL description="Dante socks5 server" -LABEL maintainer="racken@one27.cf" +LABEL maintainer="xpk@headdesk.me" ENV container docker RUN apk update; apk add tini dante-server dante +#RUN addgroup -g 3000 ctnuser && adduser -u 3000 -G ctnuser -D ctnuser +#USER ctnuser COPY sockd.conf /etc/sockd.conf ENTRYPOINT ["/sbin/tini", "--"] CMD ["/usr/sbin/sockd"]