From 4ba0f9ace71940383a05ece431a755fcea0bab9d Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 5 Jun 2025 11:30:48 +0200 Subject: [PATCH] feat(docker): prod, fix misc --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 118a2584e..9aa7b697e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -427,9 +427,11 @@ RUN git clone --branch dev --single-branch https://git.congegni.net/Congegni/sin /home/$sintonia_user/composer install --no-progress --no-interaction && \ /home/$sintonia_user/composer --no-cache dump-autoload --no-interaction -RUN php artisan key:generate && \ - php artisan migrate && \ - php artisan db:seed && \ +RUN php artisan key:generate + +RUN php artisan migrate + +RUN php artisan db:seed && \ set -eux && \ npm i && \ npm run build