mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
update obfsproxy
This commit is contained in:
parent
79451726eb
commit
f26eb41e9d
@ -2,18 +2,14 @@
|
||||
# Dockerfile for obfsproxy (scramblesuit)
|
||||
#
|
||||
|
||||
FROM debian:jessie
|
||||
FROM alpine
|
||||
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 \
|
||||
&& apk add --no-cache build-base curl python python-dev \
|
||||
&& curl -sSL 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/*
|
||||
&& apk del build-base curl python-dev
|
||||
|
||||
ENV LOG_MIN_SEVERITY info
|
||||
ENV DATA_DIR /var/lib/obfsproxy
|
||||
|
34
obfsproxy/Dockerfile.debian
Normal file
34
obfsproxy/Dockerfile.debian
Normal 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
|
||||
|
Loading…
Reference in New Issue
Block a user