initial commit

This commit is contained in:
2026-05-05 21:58:43 +03:00
commit 862b7abbac
79 changed files with 4132 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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'
}
}