Files
workout_buddy/jenkinsfile

21 lines
425 B
Plaintext
Raw Normal View History

2024-10-22 19:24:04 -04:00
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'
}
}
}
}