Jenkinsfile
This commit is contained in:
parent
735dfa54c5
commit
2a82d04fc2
1 changed files with 14 additions and 0 deletions
14
Jenkinsfile
vendored
Normal file
14
Jenkinsfile
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Build Image') {
|
||||||
|
steps {
|
||||||
|
sh 'echo worker:test'
|
||||||
|
script {
|
||||||
|
docker.build('worker:test', '-f src/Worker/Dockerfile . --no-cache')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue