From 58dbe8114817267fe1134e8961c73ba912eb90fb Mon Sep 17 00:00:00 2001 From: Pierre-Yves Lochou Date: Mon, 23 Sep 2024 17:23:26 +0200 Subject: [PATCH] Update to 42.7.4 before opening a bug issue about FIPS --- common/script/installPostgres.sh | 2 +- standalone/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/script/installPostgres.sh b/common/script/installPostgres.sh index 98df82fa..9eab9e68 100755 --- a/common/script/installPostgres.sh +++ b/common/script/installPostgres.sh @@ -5,7 +5,7 @@ set -e # Install the driver for PostgreSQL echo "Install the driver for postgreSQL" cd /tmp -curl --fail --insecure --remote-name --remote-time --silent https://jdbc.postgresql.org/download/postgresql-42.7.2.jar +curl --fail --insecure --remote-name --remote-time --silent https://jdbc.postgresql.org/download/postgresql-42.7.4.jar mv postgres* /config/resources set +e diff --git a/standalone/Dockerfile b/standalone/Dockerfile index 2a0502df..e2708c94 100644 --- a/standalone/Dockerfile +++ b/standalone/Dockerfile @@ -31,7 +31,7 @@ RUN mkdir -p /config/dbdata /config/resources && chmod -R 777 /config/dbdata /co # Install the driver for PostgreSQL RUN set -ex; \ cd /tmp; \ - curl --fail --insecure --remote-name --remote-time --silent https://jdbc.postgresql.org/download/postgresql-42.7.2.jar; \ + curl --fail --insecure --remote-name --remote-time --silent https://jdbc.postgresql.org/download/postgresql-42.7.4.jar; \ mv postgres* /config/resources/ RUN chmod -R a+x $SCRIPT && mkdir $APPS