add dockerfile.build

This commit is contained in:
Krzysztof Jurkiewicz 2019-04-26 12:27:13 +02:00
parent 8de59b6d34
commit 963a1b1cef

5
Jenkinsfile vendored
View File

@ -5,4 +5,9 @@ node {
sh label: '', script: 'chmod +x metrics.sh'
sh label: '', script: './metrics.sh'
archive '*'
def customImage = docker.build("my-custom-image")
customImage.inside {
sh 'echo Wooooot Whaaat'
}
}