Skip to content

Commit

Permalink
Merge pull request #242 from axonivy/playwright-image
Browse files Browse the repository at this point in the history
Update playwright image
  • Loading branch information
ivy-lli authored Feb 25, 2025
2 parents d0bc7e8 + 27fdb2f commit 5fe0597
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/Dockerfile → build/Dockerfile.playwright
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/playwright:v1.50.1-jammy
FROM mcr.microsoft.com/playwright:v1.50.1

RUN apt-get update &&\
apt-get install software-properties-common -y &&\
Expand Down
4 changes: 2 additions & 2 deletions build/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pipeline {
steps {
script {
catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') {
docker.build('node', '-f build/Dockerfile .').inside {
docker.build('node', '-f build/Dockerfile.playwright .').inside {
sh 'npm install && npm run build && npm run sbom && npm run sbom-dev'
}
}
Expand All @@ -27,7 +27,7 @@ pipeline {
steps {
script {
catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') {
docker.build('node', '-f build/Dockerfile .').inside {
docker.build('node', '-f build/Dockerfile.playwright .').inside {
sh 'npm run test'
}
}
Expand Down

0 comments on commit 5fe0597

Please sign in to comment.