From 1f129205afd15090e289781e3248c27945553e59 Mon Sep 17 00:00:00 2001
From: Loxbie <ole@freirad.at>
Date: Thu, 22 Feb 2024 14:00:36 +0100
Subject: [PATCH] Fix: remove {} from RUN as this is not supported

The docker RUN uses /bin/sh as the default, this does not support curly braces. aura#308
---
 Dockerfile | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index c07800b3..60ea1d6f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -40,7 +40,11 @@ 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/{logs,static/admin,site_media} && \
+    mkdir -p \
+    /app/site_media \
+    /app/static/admin \
+    /app/logs \
+    && \
     chown -R app:app /app
 
 USER app
-- 
GitLab