We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3db8d57 commit aeb17f8Copy full SHA for aeb17f8
1 file changed
Dockerfile
@@ -97,6 +97,12 @@ RUN apt-get update \
97
libicu72 \
98
liblz4-1 \
99
libzstd1 \
100
+ curl \
101
+ # install libssl1.1 from bullseye for compatibility with pg_upgrade
102
+ && curl -L -o /tmp/libssl1.1.deb "http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1w-0+deb11u4_${TARGETARCH}.deb" \
103
+ && dpkg -i /tmp/libssl1.1.deb || apt-get -f install -y \
104
+ && rm /tmp/libssl1.1.deb \
105
+ && apt-get purge -y curl \
106
&& rm -rf /var/lib/apt/lists/*
107
108
# copy extension files from builder
0 commit comments