diff options
author | Reverite <github@reverite.sh> | 2019-09-19 15:39:52 -0700 |
---|---|---|
committer | Reverite <github@reverite.sh> | 2019-09-19 15:39:52 -0700 |
commit | 822c904bc99176c5db7209e4c32e5b1257c1f7e3 (patch) | |
tree | 3251df284abc7188f460e491fada98d761c7facc | |
parent | 007bae4d533f966f3fa11aa785642c9be61cf40e (diff) |
Test Docker fix 3
-rw-r--r-- | Dockerfile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile index d7490adfc..c5225f7bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -112,11 +112,15 @@ ENV NODE_ENV="production" ENV RAILS_SERVE_STATIC_FILES="true" ENV BIND="0.0.0.0" +USER mastodon + # Precompile assets -RUN su - mastodon -c "cd ~ && \ - OTP_SECRET=_ SECRET_KEY_BASE=_ rails assets:precompile && \ - yarn cache clean" && \ - rm -rf /opt/mastodon/tmp/* +RUN OTP_SECRET=_ SECRET_KEY_BASE=_ rails assets:precompile && yarn cache clean + +# Empty temporary files +USER root + +RUN rm -rf /opt/mastodon/tmp/* # Set the run user USER mastodon |