1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/tinyproxy/Dockerfile

20 lines
416 B
Docker
Raw Normal View History

2016-11-05 13:31:25 +00:00
#
# Dockerfile for tinyproxy
#
2021-11-30 07:46:01 +00:00
FROM alpine:3
MAINTAINER EasyPi Software Foundation
2016-11-05 13:31:25 +00:00
RUN set -xe \
&& apk add --no-cache tinyproxy \
&& sed -i -e '/^Allow /s/^/#/' \
-e '/^ConnectPort /s/^/#/' \
-e '/^#DisableViaHeader /s/^#//' \
-e 's/^Timeout.*/Timeout 10/' \
2016-11-05 13:31:25 +00:00
/etc/tinyproxy/tinyproxy.conf
VOLUME /etc/tinyproxy
EXPOSE 8888
CMD ["tinyproxy", "-d"]