collection.dockerfile/alpine/dante/Dockerfile
2022-05-24 23:36:14 +08:00

9 lines
249 B
Docker

FROM alpine:3.16
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"]