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

13 lines
216 B
Groovy

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