This is an automated email from the ASF dual-hosted git repository. snuyanzin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-ci-docker.git
commit ce1df41a38dff271555dd012d381389a5cbe306f Author: Matthias Pohl <[email protected]> AuthorDate: Mon Jan 22 10:26:29 2024 +0100 [FLINK-34194][ci] Adds OpenSSL 1.0.0 which is required by netty-tcnative --- base/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/base/Dockerfile b/base/Dockerfile index 3610f59..bfdfb32 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -89,3 +89,7 @@ RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen ; locale-gen ; update-locale en_U ENV LC_ALL "en_US.UTF-8" ENV LANG "en_US.UTF-8" ENV LANGUAGE "en_US.UTF-8" + +# Install OpenSSL version that's required by netty-tcnative +RUN wget -r --no-parent -nd --accept=libssl1.0.0_*ubuntu5.*_amd64.deb http://security.ubuntu.com/ubuntu/pool/main/o/openssl1.0/ +RUN apt install ./libssl1.0.0_*.deb \ No newline at end of file
