diff --git a/Dockerfile b/Dockerfile index 60ea1d6fbe22e5713d95f25ab750d520d0dd2b96..d376869ca9048dd8049243b84b0d51d6142242c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,11 +40,7 @@ RUN adduser --home /app --no-create-home --system --uid ${AURA_UID} --group app # containers. We therefore create them here and set the permissions right away # since named volumes otherwise create these directories themself as the root # user. - mkdir -p \ - /app/site_media \ - /app/static/admin \ - /app/logs \ - && \ + mkdir -p /app/site_media /app/static /app/logs && \ chown -R app:app /app USER app