ium_444018/Docker/Jenkinsfile

21 lines
475 B
Plaintext
Raw Normal View History

2022-03-30 09:12:46 +02:00
node {
def app
stage('Clone repository') {
checkout scm
}
stage('Build image') {
2022-03-30 09:14:10 +02:00
app = docker.build("sparafinski/ium", "./Docker/")
2022-03-30 09:12:46 +02:00
}
2022-03-30 09:38:17 +02:00
stage('Split set into dev/train/test') {
app.inside {
sh 'pwd'
2022-03-30 09:39:58 +02:00
ah 'ls -la'
2022-03-30 09:12:46 +02:00
}
}
2022-03-30 09:05:37 +02:00
}