12 lines
No EOL
260 B
Groovy
12 lines
No EOL
260 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build Docker Image') {
|
|
steps {
|
|
script {
|
|
docker.build("test-initial-repo:1.0.0", "-f Dockerfile ./src/worker")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |