dotnet-worker/Jenkinsfile

15 lines
292 B
Text
Raw Normal View History

2025-10-30 15:13:14 -03:00
pipeline {
agent any
stages {
stage('Build Image') {
steps {
sh 'echo worker:test'
script {
2025-10-30 15:26:27 -03:00
docker.build('worker:test', '-f src/worker/Dockerfile . --no-cache')
2025-10-30 15:13:14 -03:00
}
}
}
}
}