mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
19 lines
366 B
Docker
19 lines
366 B
Docker
#
|
|
# Dockerfile for tinyproxy
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache tinyproxy \
|
|
&& sed -i -e '/^Allow /s/^/#/' \
|
|
-e '/^ConnectPort /s/^/#/' \
|
|
-e '/^#DisableViaHeader /s/^#//' \
|
|
/etc/tinyproxy/tinyproxy.conf
|
|
|
|
VOLUME /etc/tinyproxy
|
|
EXPOSE 8888
|
|
|
|
CMD ["tinyproxy", "-d"]
|