Skip to content

Commit

Permalink
⬆️ (Dockerfile): Upgrade LPM_VERSION from 0.2.6 to 0.2.7 for both Doc… (
Browse files Browse the repository at this point in the history
#323)

* ⬆️ (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
  • Loading branch information
jandroav authored Jul 12, 2024
1 parent 824147c commit 666d1c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use multi-stage build
FROM alpine:3.19
FROM alpine:3.20

# Create liquibase user
RUN addgroup --gid 1001 liquibase && \
Expand All @@ -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 && \
Expand Down

0 comments on commit 666d1c8

Please sign in to comment.