From 71b4e423bcab9b4503f1309e413f3a71e27bcc04 Mon Sep 17 00:00:00 2001 From: Fernando <82854646+FernandosPerez@users.noreply.github.com> Date: Sat, 9 May 2026 02:01:12 -0600 Subject: [PATCH] Add command to link storage in Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7ab0fe94..24c0ef2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,8 @@ RUN npm ci && npm run build RUN mkdir -p storage/framework/{sessions,views,cache} \ && chmod -R 775 storage bootstrap/cache +RUN php artisan storage:link + COPY supervisord.conf /etc/supervisord.conf EXPOSE 8080