2015-04-30 11:53:02 +02:00
|
|
|
#
|
|
|
|
# Dockerfile for obfsproxy
|
|
|
|
#
|
|
|
|
|
|
|
|
FROM ubuntu:14.04
|
|
|
|
MAINTAINER kev<noreply@datageek.info>
|
|
|
|
|
2015-04-30 11:58:22 +02:00
|
|
|
RUN apt-get update && apt-get install -y build-essential curl python python-dev
|
2015-04-30 11:53:02 +02:00
|
|
|
RUN curl https://bootstrap.pypi.org/get-pip.py | python
|
|
|
|
RUN pip install obfsproxy
|
|
|
|
|
|
|
|
ENV DATA_DIR /var/lib/obfsproxy
|
|
|
|
ENV PASSWORD XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
|
|
|
ENV DEST_ADDR openvpn
|
|
|
|
ENV DEST_PORT 1194
|
|
|
|
ENV LISTEN_ADDR 0.0.0.0
|
|
|
|
ENV LISTEN_PORT 4911
|
|
|
|
|
|
|
|
EXPOSE $LISTEN_PORT
|
|
|
|
|
|
|
|
CMD obfsproxy --data-dir=$DATA_DIR scramblesuit --password=$PASSWORD --dest=$DEST_ADDR:$DEST_PORT \
|
|
|
|
server $LISTEN_ADDR:LISTEN_PORT
|