1
0
mirror of https://github.com/PurpleI2P/pyseeder synced 2025-01-30 16:44:16 +00:00

Merge pull request #7 from l-n-s/fix_docker

Docker: fix permissions issue
This commit is contained in:
Darknet Villain 2017-07-11 21:06:02 +00:00 committed by GitHub
commit 5cc14e16d9

View File

@ -17,12 +17,13 @@ RUN apk --no-cache add python3 py3-pip build-base git openssl-dev musl-dev pytho
RUN apk --no-cache add python3 openssl RUN apk --no-cache add python3 openssl
VOLUME "$DATA_DIR" VOLUME "$DATA_DIR"
USER pyseeder
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
RUN chmod a+x /entrypoint.sh RUN chmod a+x /entrypoint.sh
EXPOSE 8443 EXPOSE 8443
USER pyseeder
ENTRYPOINT [ "/entrypoint.sh" ] ENTRYPOINT [ "/entrypoint.sh" ]