1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-26 00:38:37 +00:00
dockerfiles/sniproxy/Dockerfile
2023-06-12 14:55:56 +08:00

14 lines
229 B
Docker

#
# Dockerfile for sniproxy
#
FROM alpine:3
MAINTAINER EasyPi Software Foundation
RUN apk add --no-cache sniproxy
EXPOSE 80 443
ENTRYPOINT ["/usr/sbin/sniproxy"]
CMD ["-f", "-n", "65536", "-c", "/etc/sniproxy/sniproxy.conf"]