.
Some checks failed
internetmastercz/test/pipeline/head There was a failure building this commit

This commit is contained in:
2021-10-19 23:45:14 +02:00
parent 0da872ca85
commit 9cc7208c48

11
Jenkinsfile vendored
View File

@@ -1,10 +1,17 @@
pipeline {
agent {
docker { image 'node:17-alpine' }
label 'docker'
}
stages {
stage('Init') {
agent {
docker {
// Set both label and image
label 'docker'
image 'node:17-alpine'
args '--name docker-node' // list any args
}
}
steps {
sh 'node --version'
}