| 123456789101112131415161718192021 | # https://pkgs.alpinelinux.org/packages?name=obfs4proxy&arch=x86_64FROM alpine:3.10RUN adduser -S onion \    && apk add --no-cache tor \    && apk add --no-cache obfs4proxy \        --repository http://dl-cdn.alpinelinux.org/alpine/edge/testingENV OR_PORT=ENV PT_PORT=ENV CONTACT_INFO=COPY torrc.template /RUN chmod a+r /torrc.templateCOPY entrypoint.sh /RUN chmod a+rx /entrypoint.shENTRYPOINT ["/entrypoint.sh"]USER onionCMD ["tor", "-f", "/tmp/torrc"]
 |