Fix file permission in Docker image (#189)

`chown` needs to be done "after" the file copy, otherwise there is no
meaning to do it as /home/tgproxy is default owned by tgproxy already.
This commit is contained in:
Peter Dave Hello
2020-02-11 19:50:48 +08:00
committed by GitHub
parent 199eaeb7c4
commit 9c50cab94e

View File

@@ -4,10 +4,10 @@ RUN adduser tgproxy -u 10000 -D
RUN apk add --no-cache python3 py3-cryptography ca-certificates libcap RUN apk add --no-cache python3 py3-cryptography ca-certificates libcap
RUN chown -R tgproxy:tgproxy /home/tgproxy
RUN setcap cap_net_bind_service=+ep /usr/bin/python3.8 RUN setcap cap_net_bind_service=+ep /usr/bin/python3.8
COPY mtprotoproxy.py config.py /home/tgproxy/ COPY mtprotoproxy.py config.py /home/tgproxy/
RUN chown -R tgproxy:tgproxy /home/tgproxy
USER tgproxy USER tgproxy