1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2024-11-10 21:56:53 +00:00
docker-squid/Dockerfile
2017-02-08 10:16:23 +03:00

14 lines
255 B
Docker

FROM armhf/alpine
MAINTAINER b4tman <b4tm4n@mail.ru>
ENV SQUID_CONFIG_FILE=/etc/squid/squid.conf
RUN apk add --no-cache squid
VOLUME ["/var/cache/squid"]
COPY docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["squid"]
EXPOSE 3128/tcp