Files
workout_buddy/jenkinsfile
2024-10-22 19:24:04 -04:00

21 lines
425 B
Plaintext

pipeline {
agent { label 'jenkins-agent' }
stages {
stage('Build') {
steps {
sh 'docker-compose build'
}
}
stage('Test') {
steps {
sh 'docker-compose run --rm app python -m pytest'
}
}
stage('Deploy') {
steps {
sh 'docker-compose up -d'
}
}
}
}