collection.dockerfile/alpine/dante/Dockerfile
2022-04-19 10:30:26 +08:00

9 lines
251 B
Docker

FROM alpine:latest
LABEL description="Dante socks5 server"
LABEL maintainer="racken@one27.cf"
ENV container docker
RUN apk update; apk add tini dante-server dante
COPY sockd.conf /etc/sockd.conf
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/usr/sbin/sockd"]