ium_444018/Jenkinsfile
2022-03-31 21:33:33 +02:00

13 lines
193 B
Groovy

pipeline {
agent any
stages {
stage ("Build Docker image") {
steps {
sh 'docker build -t ium_docker .'
}
}
}
}