From 1e0e7caaa8bb86827122ecab1fd9584c2464f0b6 Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Thu, 22 Feb 2024 12:56:32 -0400 Subject: [PATCH] build: create /app/static. there is more static media to collect --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 60ea1d6f..d376869c 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 -- GitLab