From 35924a9cf6a35c4afa1bafd55e2cd78dda1fd4c4 Mon Sep 17 00:00:00 2001 From: Kameron Kenny <1267885+kkenny@users.noreply.github.com> Date: Mon, 1 Jul 2024 14:52:22 -0400 Subject: [PATCH] version --- Dockerfile | 2 +- Jenkinsfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c173623..a1f7344 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ diff --git a/Jenkinsfile b/Jenkinsfile index 95f40d1..f800e7b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,15 +17,15 @@ 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' } } } - + 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' } } }