1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/sniproxy/Dockerfile

14 lines
229 B
Docker
Raw Normal View History

2023-06-12 08:55:56 +02:00
#
# 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"]