Docker: fix permissions issue

pull/7/head
l-n-s 2017-07-11 17:04:23 -04:00
parent f3d32fb05a
commit 40bbe3c920
1 changed files with 2 additions and 1 deletions

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
VOLUME "$DATA_DIR"
USER pyseeder
COPY entrypoint.sh /entrypoint.sh
RUN chmod a+x /entrypoint.sh
EXPOSE 8443
USER pyseeder
ENTRYPOINT [ "/entrypoint.sh" ]