mirror of
https://gitlab.com/skobkin/torproxy-obfs4.git
synced 2024-12-22 06:54:21 +00:00
10 lines
410 B
Docker
10 lines
410 B
Docker
FROM dperson/torproxy
|
|
|
|
LABEL org.opencontainers.image.authors="Alexey Skobkin <skobkin-ru@ya.ru>"
|
|
|
|
# 'testing' repo for obfs4proxy
|
|
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories && \
|
|
apk update --no-cache --no-progress && \
|
|
apk add obfs4proxy --no-cache --no-progress && \
|
|
echo 'ClientTransportPlugin obfs4 exec /usr/bin/obfs4proxy managed' >> /etc/tor/torrc
|