From 4546f1943258e68daa0a66bfe88ebee72f8d0598 Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 6 Feb 2025 10:53:42 +0100 Subject: [PATCH] test: refs #6695 e2e better build front image --- Jenkinsfile | 2 +- docker-compose.e2e.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 89ce59b934..489e75b8c3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -130,7 +130,7 @@ pipeline { steps { sh 'docker build -f Dockerfile.e2e -t front .' // sh 'docker-compose -f docker-compose.e2e.yml build' - sh 'docker-compose -f docker-compose.e2e.yml up -d front' + sh 'docker-compose -f docker-compose.e2e.yml up -d front_e2e' } } // stage('Build Cypress') { diff --git a/docker-compose.e2e.yml b/docker-compose.e2e.yml index b2d0fddfe8..abbe23f3c3 100644 --- a/docker-compose.e2e.yml +++ b/docker-compose.e2e.yml @@ -1,7 +1,7 @@ version: '3.7' services: front: - image: front + image: front_e2e command: npx quasar dev # command: npx quasar serve --history --proxy ./proxy.mjs --hostname 127.0.0.1 --port 9000 build: @@ -11,7 +11,7 @@ services: volumes: - ./node_modules:/app/node_modules e2e: - image: front + image: front_e2e command: pnpx cypress run --browser chromium build: context: .