Skip to content

Commit aeb17f8

Browse files
committed
fix: add libssl1.1 for bullseye upgrade compatibility
1 parent 3db8d57 commit aeb17f8

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ RUN apt-get update \
9797
libicu72 \
9898
liblz4-1 \
9999
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 \
100106
&& rm -rf /var/lib/apt/lists/*
101107

102108
# copy extension files from builder

0 commit comments

Comments
 (0)