Allow running docker container as non-root (quick fix)

This commit is contained in:
JuniorJPDJ 2021-09-20 12:42:41 +02:00
parent 9a3cf4e1dd
commit 4b95924970
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ RUN apk add --no-cache \
COPY . /app
WORKDIR /app
RUN chmod 755 compose compose/django
RUN find . -type d -exec chmod 755 {} \+
ENTRYPOINT ["./compose/django/entrypoint.sh"]
CMD ["./compose/django/server.sh"]