mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:50 +02:00
13 lines
166 B
Docker
13 lines
166 B
Docker
#
|
|
# Dockerfile for squid
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
RUN apk add --no-cache squid
|
|
|
|
EXPOSE 3128 3130
|
|
|
|
ENTRYPOINT ["/usr/sbin/squid", "-NYCd1"]
|