blob: 0dd63fa7d641f1f9090a81ba985dd61e96cf4c09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM debian:9
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y squid3
COPY entrypoint.sh /sbin/entrypoint.sh
COPY squid.conf /etc/squid/squid.conf
RUN chmod 755 /sbin/entrypoint.sh
EXPOSE 3128/tcp
CMD "/sbin/entrypoint.sh"
|