Files
2026-05-05 21:58:43 +03:00

13 lines
230 B
Groovy

node {
stage("Download SRC") {
checkout scm
}
stage("build and push") {
def img = docker.build("${env.DOCKER_PREFIX}/shs-server", ". --no-cache")
img.push()
}
stage("docker prune") {
sh 'docker system prune -f'
}
}