mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-25 02:04:06 +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"]
|