1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-18 04:59:16 +02:00
dockerfiles/squid/Dockerfile

14 lines
179 B
Docker
Raw Normal View History

2016-04-03 10:13:05 +08:00
#
# Dockerfile for squid
#
2020-04-23 15:07:52 +08:00
FROM alpine:3
MAINTAINER EasyPi Software Foundation
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
2020-04-23 15:07:52 +08:00
EXPOSE 3128/tcp 3130/udp
2016-04-03 10:13:05 +08:00
ENTRYPOINT ["/usr/sbin/squid", "-NYCd1"]