allows to bind on privilleged ports

This commit is contained in:
Alexander Bersenev
2018-06-21 10:19:38 +05:00
parent e1d592cd84
commit 51c40903ab
2 changed files with 3 additions and 2 deletions

View File

@@ -2,12 +2,13 @@ FROM alpine:3.6
RUN adduser tgproxy -u 10000 -D
RUN apk add --no-cache python3 py3-crypto ca-certificates
RUN apk add --no-cache python3 py3-crypto ca-certificates libcap
COPY mtprotoproxy.py config.py /home/tgproxy/
COPY pyaes/*.py /home/tgproxy/pyaes/
RUN chown -R tgproxy:tgproxy /home/tgproxy
RUN setcap cap_net_bind_service=+ep /usr/bin/python3.6
USER tgproxy