Fix brace expansion not working in Alpine sh
Deploy / deploy (push) Failing after 29s

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 <noreply@anthropic.com>
This commit is contained in:
Malek Tellissi
2026-09-11 02:19:21 +02:00
co-authored by Claude Sonnet 4.6
parent b3a2070a9e
commit a10f43fe21
+4 -1
View File
@@ -37,7 +37,10 @@ COPY . .
COPY --from=node /app/public/build public/build/ COPY --from=node /app/public/build public/build/
# Autoloader finalisieren # 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 RUN composer dump-autoload --optimize --no-dev
# Berechtigungen setzen # Berechtigungen setzen