fix: docker-in-docker volume issue by building e2e image

This commit is contained in:
David Ali
2026-01-05 19:46:04 +01:00
parent 83b2d73f88
commit daa00c9844
2 changed files with 14 additions and 7 deletions

11
e2e/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# e2e/Dockerfile
FROM cypress/included:13.6.0
# Ustawiamy katalog roboczy
WORKDIR /e2e
# Kopiujemy pliki testowe (cypress.config.js i folder cypress) do obrazu
COPY . .
# Domyślna komenda (można nadpisać w docker-compose)
CMD ["cypress", "run"]