You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
394 B
17 lines
394 B
FROM debian:11 |
|
|
|
RUN apt-get update && \ |
|
apt-get -y upgrade && \ |
|
apt-get install -y squid && \ |
|
mkdir -p /etc/squid/patterns.d /etc/squid/storeid /app/storeid |
|
|
|
COPY docker-stuff/start.sh /app/ |
|
COPY storeid_rewrite /app/ |
|
COPY docker-stuff/squid.conf /etc/squid/ |
|
COPY patterns/* /etc/squid/patterns.d/ |
|
COPY storeid/* /app/storeid/ |
|
|
|
EXPOSE 3128 |
|
EXPOSE 3129 |
|
|
|
ENTRYPOINT ["/app/start.sh"]
|
|
|