1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/obfsproxy/Dockerfile

31 lines
805 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
#
2017-09-02 07:13:30 +00:00
FROM alpine
2017-09-02 06:15:56 +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 \
2017-09-02 07:13:30 +00:00
&& apk add --no-cache build-base curl python python-dev \
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
&& pip install --no-cache-dir obfsproxy \
2017-09-02 07:13:30 +00:00
&& apk del build-base curl python-dev
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