From c30e890f9a6befb72946ac85ec8d3cd61efffbd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nu=C5=A1a=20Puk=C5=A1i=C4=8D?= Date: Tue, 14 Oct 2025 21:40:31 +0200 Subject: [PATCH] Fix prod --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 26ea565..ab80f11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -89,13 +89,14 @@ COPY --link frankenphp/worker.Caddyfile /etc/caddy/worker.Caddyfile # prevent the reinstallation of vendors at every changes in the source code COPY --link composer.* symfony.* ./ -RUN set -eux; \ - composer install --no-cache --prefer-dist --no-dev --no-autoloader --no-scripts --no-progress # copy sources COPY --link . ./ RUN rm -Rf frankenphp/ +RUN set -eux; \ + composer install --no-cache --prefer-dist --no-dev --no-progress + RUN set -eux; \ mkdir -p var/cache var/log; \ composer dump-autoload --classmap-authoritative --no-dev; \