mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:50 +02:00
14 lines
179 B
Docker
14 lines
179 B
Docker
#
|
|
# Dockerfile for squid
|
|
#
|
|
|
|
FROM alpine:3
|
|
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN apk add --no-cache squid
|
|
|
|
EXPOSE 3128/tcp 3130/udp
|
|
|
|
ENTRYPOINT ["/usr/sbin/squid", "-NYCd1"]
|