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