Create Jenkinsfile
Some checks failed
continuous-integration/drone/push Build is failing
DragSE Gitea/redis/pipeline/head There was a failure building this commit

This commit is contained in:
Lennard Brinkhaus 2022-01-26 22:27:04 +01:00
parent b803e3f70e
commit 53f5aec90c
Signed by: lennard.brinkhaus
GPG Key ID: D4C9B6A87F97B070

30
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,30 @@
node {
def app
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
stage('Build 6.2.6 image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
def dockerfile = "6.2/Dockerfile"
app = docker.build("harbor.dragse.it/base/redis", "-f ${dockerfile} ./6.2 ")
}
stage('Push image') {
/* Finally, we'll push the image with two tags:
* First, the incremental build number from Jenkins
* Second, the 'latest' tag.
* Pushing multiple tags is cheap, as all the layers are reused. */
docker.withRegistry('https://harbor.dragse.it', 'harbor-repo') {
app.push("${env.BUILD_NUMBER}")
app.push("6")
app.push("6.2")
app.push("6.2.6")
app.push("latest")
}
}
}