mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
14 lines
194 B
Docker
14 lines
194 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", "--foreground", "-YCd1"]
|