6695-docker_push_3 #1423

Merged
alexm merged 424 commits from 6695-docker_push_3 into dev 2025-02-21 12:41:37 +00:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit de7a7c5144 - Show all commits

4
Jenkinsfile vendored
View File

@ -106,9 +106,9 @@ pipeline {
--network ${networkLowerCase}_default
-e TZ=Europe/Madrid
-e DOCKER=true
-e CI=true
""".stripIndent()) {
sh 'pnpm exec cypress install'
sh 'pnpm exec cypress run --browser chromium --ci'
sh 'pnpm exec cypress run --browser chromium'
}
}
}

View File

@ -2,6 +2,7 @@ FROM alexmorenovn/vndev:latest
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile && pnpm exec cypress install
RUN pnpm install --frozen-lockfile \
pnpm exec cypress install --cache-folder=/home/node/.cache/Cypress
WORKDIR /app