From 666d1c82ff5b6f3a282a7dc2767ae6d95be82ad3 Mon Sep 17 00:00:00 2001 From: Alejandro Alvarez Date: Fri, 12 Jul 2024 09:46:56 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20(Dockerfile):=20Upgrade=20?= =?UTF-8?q?LPM=5FVERSION=20from=200.2.6=20to=200.2.7=20for=20both=20Doc?= =?UTF-8?q?=E2=80=A6=20(#323)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ⬆️ (Dockerfile): Upgrade LPM_VERSION from 0.2.6 to 0.2.7 for both Dockerfile and Dockerfile.alpine to use the latest version of lpm and update the corresponding SHA256 checksums. * ⬆️ (Dockerfile.alpine): Upgrade base image to alpine:3.20 for security and stability reasons --- Dockerfile | 6 +++--- Dockerfile.alpine | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f8e542..8513e92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,9 +25,9 @@ RUN wget -q -O liquibase-${LIQUIBASE_VERSION}.tar.gz "https://github.com/liquiba ln -s /liquibase/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh && \ liquibase --version -ARG LPM_VERSION=0.2.6 -ARG LPM_SHA256=0e1df6b8daf9d53a2d1d90fa8e48abbcbb8e885d249de7a09879a3a0276bebdf -ARG LPM_SHA256_ARM=b1f6d5c8b21353b213ef828849c3d767d4214e13e8c0f4fbadd038c96ef93389 +ARG LPM_VERSION=0.2.7 +ARG LPM_SHA256=e831120c566c76a427c6d3489cd62d5447322444399393e3ef304db0c036c4a1 +ARG LPM_SHA256_ARM=720afb6bafb987ab502b86682f410d0e19da45fdf0119d947ed7bfa4e6a02665 # Download and Install lpm RUN apt-get update && \ diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 4ab6a5c..439d226 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,5 +1,5 @@ # Use multi-stage build -FROM alpine:3.19 +FROM alpine:3.20 # Create liquibase user RUN addgroup --gid 1001 liquibase && \ @@ -26,9 +26,9 @@ RUN set -x && \ ln -s /liquibase/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh && \ liquibase --version -ARG LPM_VERSION=0.2.6 -ARG LPM_SHA256=0e1df6b8daf9d53a2d1d90fa8e48abbcbb8e885d249de7a09879a3a0276bebdf -ARG LPM_SHA256_ARM=b1f6d5c8b21353b213ef828849c3d767d4214e13e8c0f4fbadd038c96ef93389 +ARG LPM_VERSION=0.2.7 +ARG LPM_SHA256=e831120c566c76a427c6d3489cd62d5447322444399393e3ef304db0c036c4a1 +ARG LPM_SHA256_ARM=720afb6bafb987ab502b86682f410d0e19da45fdf0119d947ed7bfa4e6a02665 # Download and Install lpm RUN mkdir /liquibase/bin && \