mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
14 lines
229 B
Docker
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"]
|