collection.dockerfile/alpine/dante/Dockerfile

9 lines
249 B
Docker
Raw Normal View History

2022-05-24 23:36:14 +08:00
FROM alpine:3.16
2022-04-19 10:30:26 +08:00
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"]