1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/obfsproxy/arm/Dockerfile

31 lines
822 B
Docker
Raw Normal View History

2017-09-02 10:23:48 +02:00
#
# Dockerfile for obfsproxy-arm (scramblesuit)
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& 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 10:23:48 +02:00
&& apk del build-base curl python-dev
ENV LOG_MIN_SEVERITY info
ENV DATA_DIR /var/lib/obfsproxy
ENV PASSWORD XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ENV DEST_ADDR openvpn
ENV DEST_PORT 1194
ENV RUN_MODE server
ENV LISTEN_ADDR 0.0.0.0
ENV LISTEN_PORT 4911
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