diff --git a/Dockerfile b/Dockerfile index 89b48c0..b51f1d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -98,6 +98,8 @@ RUN adduser --no-create-home --uid 1161 --group --system squid \ && echo "access_log stdio:/var/log/squid/access.log" >> /etc/squid/squid.conf \ && echo "cache_log /var/log/squid/cache.log" >> /etc/squid/squid.conf \ && echo "cache_effective_user squid" >> /etc/squid/squid.conf \ +# Removed in 5.8, needed for test + && echo "http_access allow localnet" >> /etc/squid/squid.conf \ # Packages dependencies installation for running and clean again && apt-get update && apt-get install -y --no-install-recommends c-icap ca-certificates net-tools rsync libexpat1 libltdl7 libxml2 openssl ca-certificates libldap-2.4-2 libecap3 libcap2 libdb5.3 libatomic1 dumb-init procps inotify-tools curl \ && apt-get auto-remove -y && apt-get clean autoclean \