1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 22:08:39 +00:00
dockerfiles/obfsproxy/Dockerfile

35 lines
923 B
Docker
Raw Normal View History

2015-04-30 09:53:02 +00:00
#
2015-05-24 04:23:19 +00:00
# Dockerfile for obfsproxy (scramblesuit)
2015-04-30 09:53:02 +00:00
#
2015-05-24 03:22:31 +00:00
FROM debian:jessie
2017-05-07 23:05:07 +00:00
MAINTAINER kev<noreply@easypi.pro>
2015-04-30 09:53:02 +00:00
2016-04-02 00:19:22 +00:00
RUN set -xe \
&& apt-get update \
2015-05-24 03:22:31 +00:00
&& apt-get install -y build-essential curl python python-dev \
&& curl https://bootstrap.pypa.io/get-pip.py | python \
&& pip install obfsproxy \
2015-05-24 04:23:19 +00:00
&& apt-get purge -y build-essential python-dev \
2015-05-24 03:22:31 +00:00
&& apt-get autoremove -y \
2015-05-24 04:23:19 +00:00
&& apt-get clean -y \
2015-05-24 03:22:31 +00:00
&& rm -rf /var/lib/apt/lists/*
2015-04-30 09:53:02 +00:00
2015-04-30 10:32:52 +00:00
ENV LOG_MIN_SEVERITY info
2015-04-30 09:53:02 +00:00
ENV DATA_DIR /var/lib/obfsproxy
ENV PASSWORD XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ENV DEST_ADDR openvpn
ENV DEST_PORT 1194
2015-05-01 08:25:42 +00:00
ENV RUN_MODE server
2015-04-30 09:53:02 +00:00
ENV LISTEN_ADDR 0.0.0.0
ENV LISTEN_PORT 4911
2015-05-24 04:23:19 +00:00
CMD obfsproxy --log-min-severity=$LOG_MIN_SEVERITY \
--data-dir=$DATA_DIR \
scramblesuit \
--password=$PASSWORD \
--dest=$DEST_ADDR:$DEST_PORT \
$RUN_MODE \
$LISTEN_ADDR:$LISTEN_PORT
2015-04-30 10:32:52 +00:00