Removed the Jenkinsfile

This commit is contained in:
2024-11-17 11:54:06 -05:00
parent 9fe48ecb37
commit d4c917aeba

View File

@@ -1,20 +0,0 @@
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'
}
}
}
}