1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/squid/Dockerfile

14 lines
194 B
Docker
Raw Normal View History

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