k-space/samba
k-space
/
samba
Archived
9
0
Fork 0

Add Jenkinsfile
gitea-kspace/samba/pipeline/head This commit looks good Details

This commit is contained in:
Madis Mägi 2021-10-17 11:00:34 +03:00
parent d88a25ec75
commit 09d6fd8696
1 changed files with 20 additions and 0 deletions

20
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,20 @@
#!/usr/bin/groovy
image = "samba"
label = "latest"
build = null
node {
stage("Checkout") {
checkout scm
}
stage("Build") {
build = docker.build("kspaceee/${image}")
}
stage("Push") {
docker.withRegistry("https://registry.hub.docker.com", "dockerhub-kspace") {
build.push(label)
}
}
}