1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02: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"]