From a10f43fe2165ec252aeeda54759dd690532089d5 Mon Sep 17 00:00:00 2001 From: Malek Tellissi Date: Fri, 11 Sep 2026 02:19:21 +0200 Subject: [PATCH] Fix brace expansion not working in Alpine sh Busybox ash does not support brace expansion, so storage/framework/{sessions,views,cache} was created as a literal directory name instead of three separate ones. Split into explicit paths. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 51c7840..bf1a8a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,10 @@ COPY . . COPY --from=node /app/public/build public/build/ # Autoloader finalisieren -RUN mkdir -p bootstrap/cache storage/framework/{sessions,views,cache} +RUN mkdir -p bootstrap/cache \ + storage/framework/sessions \ + storage/framework/views \ + storage/framework/cache RUN composer dump-autoload --optimize --no-dev # Berechtigungen setzen