feature/Feature-1 #4

Merged
jakub merged 39 commits from feature/Feature-1 into master 2021-10-20 15:40:59 +00:00
2 changed files with 1 additions and 13 deletions
Showing only changes of commit 93efe034d5 - Show all commits

View File

@@ -1,3 +1 @@
FROM node:14-alpine
RUN apk add -U subversion

12
Jenkinsfile vendored
View File

@@ -1,17 +1,7 @@
pipeline {
agent {
label 'docker'
}
agent { dockerfile true }
stages {
stage('Init') {
agent {
docker {
// Set both label and image
label 'docker'
image 'node:lts-alpine3.14'
args '--name docker-node' // list any args
}
}
steps {
sh 'node --version'
}