1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/squid/Dockerfile
2021-10-14 18:20:57 +08:00

14 lines
194 B
Docker

#
# Dockerfile for squid
#
FROM alpine:3
MAINTAINER EasyPi Software Foundation
RUN apk add --no-cache squid
EXPOSE 3128/tcp 3130/udp
ENTRYPOINT ["/usr/sbin/squid", "--foreground", "-YCd1"]