mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-06 03:54:01 +02:00
14 lines
191 B
Docker
14 lines
191 B
Docker
#
|
|
# Dockerfile for squid-arm
|
|
#
|
|
|
|
FROM arm32v7/alpine:3
|
|
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN apk add --no-cache squid
|
|
|
|
EXPOSE 3128/tcp 3130/udp
|
|
|
|
ENTRYPOINT ["/usr/sbin/squid", "-NYCd1"]
|