-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #313 from wultra/feature/update-liquibase
Update Liquibase in docker image to 4.30.0
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ LABEL maintainer="Petr Dvořák <[email protected]>" | |
# LIQUIBASE_ prefix must not be used, because this is only supported in PRO version | ||
ENV JAVA_HOME=/opt/java/openjdk \ | ||
LB_HOME=/usr/local/liquibase \ | ||
LB_VERSION=4.23.2 \ | ||
LB_VERSION=4.30.0 \ | ||
LOGBACK_CONF=/opt/logback/conf \ | ||
TZ=UTC | ||
|
||
|
@@ -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" \ | ||
&& [ "fc7d2a9fa97d91203d639b664715d40953c6c9155a5225a0ddc4c8079b9a3641 /tmp/liquibase.tar.gz" = "$(sha256sum /tmp/liquibase.tar.gz)" ] \ | ||
&& [ "184ffd609518091da42d6cd75e883b4f6ff1763cce8883e95fc99f7f05ca262d /tmp/liquibase.tar.gz" = "$(sha256sum /tmp/liquibase.tar.gz)" ] \ | ||
&& mkdir -p "$LB_HOME" \ | ||
&& tar -xzf /tmp/liquibase.tar.gz -C "$LB_HOME" \ | ||
&& rm -rf "$LB_HOME/sdk" "$LB_HOME/examples" \ | ||
|