1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00
dockerfiles/squid/Dockerfile

13 lines
166 B
Docker
Raw Normal View History

2016-04-03 10:13:05 +08:00
#
# Dockerfile for squid
#
FROM alpine
2017-05-08 07:05:07 +08:00
MAINTAINER kev <noreply@easypi.pro>
2016-04-03 10:13:05 +08:00
2018-08-10 16:04:01 +08:00
RUN apk add --no-cache squid
2016-04-03 10:13:05 +08:00
EXPOSE 3128 3130
ENTRYPOINT ["/usr/sbin/squid", "-NYCd1"]