test-initial-repo/Jenkinsfile

12 lines
260 B
Text
Raw Normal View History

2025-10-31 09:54:44 -03:00
pipeline {
agent any
stages {
stage('Build Docker Image') {
steps {
script {
docker.build("test-initial-repo:1.0.0", "-f Dockerfile ./src/worker")
}
}
}
}
}