fix(dockerfile): COPY fixtures into image
All checks were successful
Deploy Max Bot Test / deploy (push) Successful in 11s

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 <noreply@anthropic.com>
This commit is contained in:
pkirillw
2026-06-18 01:10:17 +03:00
parent 8e250382d1
commit 066f873368

View File

@@ -30,6 +30,7 @@ COPY --from=builder /var/www/html/vendor /var/www/html/vendor
COPY composer.json composer.lock ./ COPY composer.json composer.lock ./
COPY bin ./bin COPY bin ./bin
COPY config ./config COPY config ./config
COPY fixtures ./fixtures
COPY public ./public COPY public ./public
COPY src ./src COPY src ./src
COPY storage ./storage COPY storage ./storage