This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
loki/shadowsocks/Dockerfile

16 lines
302 B
Docker
Raw Normal View History

2019-03-20 21:25:52 +01:00
FROM debian:stable-slim
2019-03-20 21:21:05 +01:00
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get -y upgrade
RUN apt-get -y install shadowsocks
2019-03-20 21:21:05 +01:00
ENV SS_VOL /var/shadowsocks
RUN mkdir $SS_VOL
ADD config.json $SS_VOL
EXPOSE 7698
VOLUME ["$SS_VOL"]
CMD ["sh", "-c", "/usr/bin/ssserver -c $SS_VOL/config.json"]