2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-24 22:39:25 +01:00
Files
dockerfiles_vimagick/shadowsocks/Dockerfile
2015-02-10 01:42:33 +08:00

17 lines
291 B
Docker

#
# Dockerfile for Shadowsocks
#
FROM ubuntu:latest
MAINTAINER noreply@datageek.info
RUN apt-get update
RUN apt-get install -y python python-pip
RUN pip install shadowsocks
ENV PASSWORD secret
ENV METHOD aes-256-cfb
ENV WORKERS 10
CMD ssserver -k $PASSWORD -m $METHOD --workers $WORKERS