From 11ec24b70c31781fd029d6974ebcf7c2d047c2da Mon Sep 17 00:00:00 2001 From: Abhinav Singh Date: Wed, 15 May 2024 12:31:38 +0530 Subject: [PATCH] Simply `apk add py-cryptography` --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d8fba6351..a313fbf368 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,9 +24,10 @@ RUN pip install --upgrade pip && \ --find-links file:/// \ proxy.py && \ rm *.whl && \ + apk add \ + py-cryptography && \ pip install \ - paramiko==3.4.0 \ - cryptography==39.0.1 + paramiko==3.4.0 # Use `--build-arg SKIP_OPENSSL=1` to disable openssl installation RUN if [[ -z "$SKIP_OPENSSL" ]]; then apk update && apk add openssl; fi