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

14 lines
179 B
Docker
Raw Normal View History

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