This commit is contained in:
Paweł Skórzewski 2024-04-03 09:37:02 +02:00
parent 2bb844a728
commit 38fd5bd7b7
2 changed files with 3 additions and 4 deletions

View File

@ -1,3 +1,3 @@
FROM node:20.11.1-alpine3.19
FROM ubuntu:latest
RUN apk add -U subversion
RUN apt install -y python3-pip

3
Jenkinsfile vendored
View File

@ -3,8 +3,7 @@ pipeline {
stages {
stage('Test') {
steps {
sh 'node --version'
sh 'svn --version'
sh 'pip3 --version'
}
}
}