mirror of
https://github.com/alexbers/mtprotoproxy.git
synced 2026-03-13 23:03:09 +00:00
17 lines
362 B
Docker
17 lines
362 B
Docker
FROM alpine:3.6
|
|
|
|
RUN adduser tgproxy -u 10000 -D
|
|
|
|
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
|
|
|
|
WORKDIR /home/tgproxy/
|
|
CMD ["./mtprotoproxy.py"]
|