You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
648 B
Groovy

pipeline {
agent {
label 'dind-agent'
}
stages {
stage("build image") {
steps {
script {
def image = "swr.eu-de.otc.t-systems.com/omnia-test/test-build:${env.BUILD_NUMBER}"
echo "FOO is ${env.BUILD_NUMBER}"
sh """
image="swr.eu-de.otc.t-systems.com/omnia-test/test-build:latest"
docker login \$PASS swr.eu-de.otc.t-systems.com
docker build -t ${image} .
docker push ${image}
"""
}
milestone(1)
}
}
}
}