Jenkinsfile

This commit is contained in:
Ramón Vásquez 2025-10-30 15:43:52 -03:00
parent 99f5eea678
commit ff22523457

3
Jenkinsfile vendored
View file

@ -6,9 +6,10 @@ pipeline {
steps {
sh 'echo worker:test'
script {
docker.build('worker:test', '-f src/worker/Dockerfile . --no-cache')
docker.build('worker:test', '-f src/worker/Dockerfile ./src/worker/ --no-cache')
}
}
}
}
}