1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-03 00:33:55 +00:00
dockerfiles/squid/arm/Dockerfile

14 lines
191 B
Docker
Raw Normal View History

2016-04-03 08:06:01 +00:00
#
# Dockerfile for squid-arm
#
2020-04-23 07:07:52 +00:00
FROM arm32v7/alpine:3
2016-04-03 08:06:01 +00:00
MAINTAINER EasyPi Software Foundation
2018-08-10 08:04:01 +00:00
RUN apk add --no-cache squid
2016-04-03 08:06:01 +00:00
2020-04-23 07:07:52 +00:00
EXPOSE 3128/tcp 3130/udp
2016-04-03 08:06:01 +00:00
ENTRYPOINT ["/usr/sbin/squid", "-NYCd1"]