eive-tmtc/automation/Jenkinsfile
Ulrich Mohr fc3cf480dc
All checks were successful
EIVE/-/pipeline/pr-main This commit looks good
bump docker version
2023-06-11 12:14:52 +02:00

15 lines
219 B
Groovy

pipeline {
agent {
docker {
image 'eive-tmtc-ci:d2'
}
}
stages {
stage('Package') {
steps {
sh 'pip install .'
}
}
}
}