ium_444018/Jenkinsfile

13 lines
193 B
Plaintext
Raw Normal View History

2022-03-27 23:27:29 +02:00
pipeline {
agent any
2022-03-31 21:28:00 +02:00
stages {
2022-03-28 09:17:36 +02:00
2022-03-31 21:28:00 +02:00
stage ("Build Docker image") {
steps {
2022-03-31 21:33:33 +02:00
sh 'docker build -t ium_docker .'
2022-03-31 21:28:00 +02:00
}
}
}
}