Skip to content

Commit

Permalink
Fix #256: Update Liquibase to 4.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
romanstrobl committed Nov 14, 2024
1 parent d6a8f78 commit ee5c8b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL maintainer="Lubos Racansky <[email protected]>"
# Prepare environment variables
ENV JAVA_HOME=/opt/java/openjdk \
LB_HOME=/usr/local/liquibase \
LB_VERSION=4.25.1 \
LB_VERSION=4.30.0 \
PKG_RELEASE=1~jammy \
LOGBACK_CONF=/opt/logback/conf \
TZ=UTC
Expand All @@ -20,7 +20,7 @@ RUN apt-get -y update \
# Install Liquibase, inspired by https://github.com/mobtitude/liquibase/blob/master/Dockerfile
&& set -x \
&& wget -q -O /tmp/liquibase.tar.gz "https://github.com/liquibase/liquibase/releases/download/v$LB_VERSION/liquibase-$LB_VERSION.tar.gz" \
&& [ "8b2b7aa8ec755d4ee52fa0210cd2a244fd16ed695fc4a72245562950776d2a56 /tmp/liquibase.tar.gz" = "$(sha256sum /tmp/liquibase.tar.gz)" ] \
&& echo "184ffd609518091da42d6cd75e883b4f6ff1763cce8883e95fc99f7f05ca262d /tmp/liquibase.tar.gz" | sha256sum -c - \
&& mkdir -p "$LB_HOME" \
&& tar -xzf /tmp/liquibase.tar.gz -C "$LB_HOME" \
&& rm -rf "$LB_HOME/sdk" "$LB_HOME/examples" \
Expand Down

0 comments on commit ee5c8b9

Please sign in to comment.