| 12345678910111213141516171819202122232425 | # https://pkgs.alpinelinux.org/packages?name=obfs4proxy&arch=x86_64FROM alpine:3.12ARG TOR_PACKAGE_VERSION=0.4.3.5-r0ARG OBFS4PROXY_PACKAGE_VERSION=0.0.11-r2RUN apk add --no-cache tor=$TOR_PACKAGE_VERSION \    && apk add --no-cache obfs4proxy=$OBFS4PROXY_PACKAGE_VERSION \        --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing#RUN apk add --no-cache \#        less \#        man-db \#        tor-doc=$TOR_PACKAGE_VERSION#ENV PAGER=lessENV OR_PORT=ENV PT_PORT=ENV CONTACT_INFO=COPY torrc.template entrypoint.sh /RUN chmod -c a+rX /torrc.template /entrypoint.shENTRYPOINT ["/entrypoint.sh"]USER torVOLUME /var/lib/torCMD ["tor", "-f", "/tmp/torrc"]
 |