1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:31 +02:00

update obfsproxy

This commit is contained in:
kev 2017-09-02 15:13:30 +08:00
parent 79451726eb
commit f26eb41e9d
2 changed files with 38 additions and 8 deletions

View File

@ -2,18 +2,14 @@
# Dockerfile for obfsproxy (scramblesuit) # Dockerfile for obfsproxy (scramblesuit)
# #
FROM debian:jessie FROM alpine
MAINTAINER kev <noreply@easypi.pro> MAINTAINER kev <noreply@easypi.pro>
RUN set -xe \ RUN set -xe \
&& apt-get update \ && apk add --no-cache build-base curl python python-dev \
&& apt-get install -y build-essential curl python python-dev \ && curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
&& curl https://bootstrap.pypa.io/get-pip.py | python \
&& pip install obfsproxy \ && pip install obfsproxy \
&& apt-get purge -y build-essential python-dev \ && apk del build-base curl python-dev
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
ENV LOG_MIN_SEVERITY info ENV LOG_MIN_SEVERITY info
ENV DATA_DIR /var/lib/obfsproxy ENV DATA_DIR /var/lib/obfsproxy

View File

@ -0,0 +1,34 @@
#
# Dockerfile for obfsproxy (scramblesuit)
#
FROM debian:jessie
MAINTAINER kev <noreply@easypi.pro>
RUN set -xe \
&& apt-get update \
&& apt-get install -y build-essential curl python python-dev \
&& curl https://bootstrap.pypa.io/get-pip.py | python \
&& pip install obfsproxy \
&& apt-get purge -y build-essential python-dev \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
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