mk-dl-bot_legacy/Jenkinsfile
2024-03-14 02:28:49 +02:00

21 lines
No EOL
370 B
Groovy

node {
def app
environment {
DOCKER_BUILDKIT = '1'
}
stage('Clone') {
checkout scm
}
stage('Build') {
app = docker.build('mykola2312/mk-dl-bot')
}
stage('Push') {
docker.withRegistry('https://registry.hub.docker.com', 'a2aa5264-dce1-4054-8828-8db95e3c6c3c') {
app.push('')
}
}
}