1
0
ium_444018/Jenkinsfile

13 lines
204 B
Groovy

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