1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/polipo/Dockerfile

23 lines
549 B
Docker
Raw Normal View History

2015-07-13 14:33:05 +00:00
#
# Dockerfile for polipo
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2015-07-13 14:33:05 +00:00
2016-08-30 03:42:12 +00:00
RUN set -xe \
&& apk add --no-cache build-base openssl \
2015-07-13 14:33:05 +00:00
&& wget https://github.com/jech/polipo/archive/master.zip -O polipo.zip \
&& unzip polipo.zip \
&& cd polipo-master \
&& make \
&& install polipo /usr/local/bin/ \
&& cd .. \
&& rm -rf polipo.zip polipo-master \
&& mkdir -p /usr/share/polipo/www /var/cache/polipo \
2016-08-30 03:42:12 +00:00
&& apk del build-base openssl
2015-07-13 14:33:05 +00:00
EXPOSE 8123
2015-07-13 14:40:19 +00:00
ENTRYPOINT ["polipo", "proxyAddress=0.0.0.0", "proxyPort=8123"]