1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/squid/Dockerfile
2018-08-10 16:04:01 +08:00

13 lines
166 B
Docker

#
# Dockerfile for squid
#
FROM alpine
MAINTAINER kev <noreply@easypi.pro>
RUN apk add --no-cache squid
EXPOSE 3128 3130
ENTRYPOINT ["/usr/sbin/squid", "-NYCd1"]