dotnet-worker/Jenkinsfile

16 lines
307 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:43:52 -03:00
docker.build('worker:test', '-f src/worker/Dockerfile ./src/worker/ --no-cache')
2025-10-30 15:13:14 -03:00
}
}
}
}
}
2025-10-30 15:43:52 -03:00