1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/squid/Dockerfile

13 lines
166 B
Docker
Raw Normal View History

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