collection.dockerfile/alpine/dante/Dockerfile

11 lines
336 B
Docker

FROM alpine:latest
LABEL description="Dante socks5 server"
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"]