From 75495b4437c29387365385b2d113bb0383799b08 Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 19 Feb 2025 09:17:15 +0100 Subject: [PATCH] ci: refs #6695 update Cypress Docker setup and improve container management in Jenkinsfile --- test/cypress/Dockerfile => Dockerfile.e2e | 0 Jenkinsfile | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename test/cypress/Dockerfile => Dockerfile.e2e (100%) diff --git a/test/cypress/Dockerfile b/Dockerfile.e2e similarity index 100% rename from test/cypress/Dockerfile rename to Dockerfile.e2e diff --git a/Jenkinsfile b/Jenkinsfile index 1a2b4ccac..24d0a6447 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -103,7 +103,7 @@ pipeline { cleanDockerE2E() sh "pnpm exec cypress install" // sh "docker build -t cypress-setup:latest -f ./test/cypress/Dockerfile ." - docker.build('cypress-setup:latest', "-f ./test/cypress/Dockerfile .") + docker.build('cypress-setup:latest', "-f .Dockerfile.e2e .") } }