From 885009a38deeff7a102744fb8cd99b04dd2a3a43 Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Tue, 28 Feb 2023 23:30:29 +0300 Subject: [PATCH] Update Dockerfile.std --- ci/Dockerfile.std | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/Dockerfile.std b/ci/Dockerfile.std index 0ec9381f7d9..cec993eb6a9 100644 --- a/ci/Dockerfile.std +++ b/ci/Dockerfile.std @@ -11,9 +11,9 @@ RUN apt-get update \ && apt-get dist-upgrade -y ca-certificates # Install curl and python3 -RUN apt-get install -y curl python3-setuptools libpython3.9 python3.9-dev \ +RUN apt-get install -y curl python3-setuptools libpython3.9 python3.9-dev \ && curl https://bootstrap.pypa.io/get-pip.py | python3 \ - && pip3 install --only-binary ":all:" grpcio protobuf==3.20.1 + && GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 pip3 install grpcio protobuf==3.20.1 # Remove some things to decrease CVE surface