File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ COPY start.sh ${PGPOOL_INSTALL_DIR}/bin/
2929
3030# Install Pgpool-II
3131RUN set -eux \
32- && wget --progress=dot:giga -O /tmp/pgpool.tar.gz "https://pgpool.net/mediawiki/images/pgpool-II-${PGPOOL_VER}.tar.gz" \
32+ && mkdir -p /tmp/pgpool \
33+ && wget --progress=dot:giga -O /tmp/pgpool.tar.gz "https://pgpool.net/source/pgpool-II-${PGPOOL_VER}.tar.gz" \
3334 && tar -zxf /tmp/pgpool.tar.gz -C /tmp/pgpool --strip-components 1 \
3435 && cd /tmp/pgpool \
3536 && patch -p1 < fix_compile_error.patch \
Original file line number Diff line number Diff line change 88set -euo pipefail
99
1010APP=" pgpool-II"
11- URL=" https://pgpool.net/mediawiki/images /"
11+ URL=" https://pgpool.net/source /"
1212
1313# Fetch the HTML content and process it to find the latest version
1414LATEST_VERSION=$( curl -s " $URL " | \
You can’t perform that action at this time.
0 commit comments