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:
co-authored by
Claude Sonnet 4.6
parent
b3a2070a9e
commit
a10f43fe21
+4
-1
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user