1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:50 +02: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"]