From 36c3988f9e9d026cf7d9052920b2debfc6430c35 Mon Sep 17 00:00:00 2001 From: Roman Davydov <15850461+rdavydov@users.noreply.github.com> Date: Tue, 11 Nov 2025 21:46:22 +0300 Subject: [PATCH] fix(Dockerfile): use libssl 1.1 --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0bec4ff..e2ec8f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY ./requirements.txt ./ ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1 -RUN pip install --upgrade pip +RUN pip install --upgrade pip setuptools wheel RUN apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --fix-missing --no-install-recommends \ @@ -17,7 +17,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --fix-missing --no-ins rustc \ zlib1g-dev \ libjpeg-dev \ - libssl-dev \ + libssl1.1 \ + libssl-dev=1.1.* \ libblas-dev \ liblapack-dev \ make \