mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Fix mastodon user not being owner of tmp folder in Dockerfile (#28137)
This commit is contained in:
parent
963354978a
commit
8710bdb183
1 changed files with 3 additions and 1 deletions
|
@ -247,7 +247,9 @@ RUN \
|
|||
RUN \
|
||||
# Pre-create and chown system volume to Mastodon user
|
||||
mkdir -p /opt/mastodon/public/system; \
|
||||
chown mastodon:mastodon /opt/mastodon/public/system;
|
||||
chown mastodon:mastodon /opt/mastodon/public/system; \
|
||||
# Set Mastodon user as owner of tmp folder
|
||||
chown -R mastodon:mastodon /opt/mastodon/tmp;
|
||||
|
||||
# Set the running user for resulting container
|
||||
USER mastodon
|
||||
|
|
Loading…
Reference in a new issue