Jenkinsfile

This commit is contained in:
Ramón Vásquez 2025-10-30 15:13:14 -03:00
parent 735dfa54c5
commit 2a82d04fc2

14
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('Build Image') {
steps {
sh 'echo worker:test'
script {
docker.build('worker:test', '-f src/Worker/Dockerfile . --no-cache')
}
}
}
}
}