This commit is contained in:
Kameron Kenny 2024-07-01 14:52:22 -04:00
parent de69b6f7b5
commit 35924a9cf6
No known key found for this signature in database
GPG Key ID: E5006629839D2276
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
FROM docker-registry1.in.thelinuxpro.net:5000/tlp/os/ubuntu/lts/tlp_ubuntu:24.04.2
LABEL version="24.04.3"
LABEL version="2024.07.01-1"
LABEL image.author.name="Kameron Kenny"
LABEL image.author.email="kameron@localhost"
LABEL description="A default Ubuntu based image \

4
Jenkinsfile vendored
View File

@ -17,7 +17,7 @@ pipeline {
stage("Build Containers and push to registry") {
steps {
script {
sh 'docker build -t docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:0.0.1 . --push'
sh 'docker build -t docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:2024.07.01-1 . --push'
}
}
}
@ -25,7 +25,7 @@ pipeline {
stage("Tag image as latest") {
steps {
script {
sh 'docker tag docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:0.0.1 docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:latest'
sh 'docker tag docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:2024.07.01-1 docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:latest'
}
}
}