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

18 lines
362 B
Groovy

pipeline {
agent any
options {
withFolderProperties()
}
stages {
stage('Build ML Base Image') {
steps {
script {
def img = docker.build("${env.PUSH_REGISTRY}/ml-base:latest", "-f MLBaseDockerfile .")
img.push()
}
}
}
}
}