fix: give docker user storge directory permissions for fileupload

demo
Philipp Rothmann 2023-02-20 12:40:14 +01:00
parent b3571515b0
commit 936c1ba878
1 changed files with 3 additions and 2 deletions

View File

@ -53,9 +53,10 @@ RUN export DATABASE_URL=mysql2://localhost/temp?encoding=utf8 && \
rm -Rf /var/lib/apt/lists/* /var/cache/apt/*
# Make relevant dirs and files writable for app user
RUN mkdir -p tmp && \
RUN mkdir -p tmp storage && \
chown nobody config/app_config.yml && \
chown nobody tmp
chown nobody tmp && \
chown nobody storage
# Run app as unprivileged user
USER nobody