proxy-server / Dockerfile
Anuj-Panthri's picture
Update Dockerfile
8e9e182 verified
raw
history blame contribute delete
209 Bytes
FROM ubuntu/squid
# Use existing user with UID 1000
USER 1000
# Ensure permissions are correct
RUN mkdir -p /run/squid && \
chmod -R 777 /run/squid /etc/squid
EXPOSE 3128
CMD ["squid", "-N", "-d", "1"]