6 lines
255 B
Docker
6 lines
255 B
Docker
FROM dperson/torproxy
|
|
RUN apk --no-cache upgrade && apk --no-cache add go git
|
|
RUN git clone https://github.com/Yawning/obfs4.git
|
|
RUN cd obfs4 && go build -o obfs4proxy/obfs4proxy ./obfs4proxy
|
|
RUN cd obfs4 && cp ./obfs4proxy/obfs4proxy /usr/bin/obfs4proxy
|