From 066f8733685a093a3b0fec08fe062491aca9e17b Mon Sep 17 00:00:00 2001 From: pkirillw Date: Thu, 18 Jun 2026 01:10:17 +0300 Subject: [PATCH] fix(dockerfile): COPY fixtures into image Commands /upload_* fell back to 'file not found' because the fixtures directory was never copied into the runtime image. Co-Authored-By: Claude Opus 4.7 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 95bcf28..e1b7899 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,6 +30,7 @@ COPY --from=builder /var/www/html/vendor /var/www/html/vendor COPY composer.json composer.lock ./ COPY bin ./bin COPY config ./config +COPY fixtures ./fixtures COPY public ./public COPY src ./src COPY storage ./storage