mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-08 04:04:42 +02:00
13 lines
188 B
Docker
13 lines
188 B
Docker
#
|
|
# Dockerfile for squid-arm
|
|
#
|
|
|
|
FROM easypi/alpine-arm:edge
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN apk add --no-cache squid
|
|
|
|
EXPOSE 3128 3130
|
|
|
|
ENTRYPOINT ["/usr/sbin/squid", "-NYCd1"]
|