1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-02 09:21:34 +02:00
dockerfiles/squid/Dockerfile

13 lines
166 B
Docker
Raw Normal View History

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