This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AIServicesBaseImages/Jenkinsfile
2025-11-26 19:50:04 +01:00

18 lines
434 B
Groovy

pipeline {
agent { label 'ml-builder-live-ci' }
options {
withFolderProperties()
}
stages {
stage('Build ML Base Image') {
steps {
sh 'docker --version'
sh 'id'
sh "docker build -f MLBaseDockerfile -t ${env.PULL_REGISTRY}/ml_base:latest ."
sh "docker push ${env.PULL_REGISTRY}/ml_base:latest"
}
}
}
}