From 353fd7c2e7d10a8313192300a8c495c99e6b94bc Mon Sep 17 00:00:00 2001 From: Rhett Reisman Date: Sat, 27 Jul 2024 14:09:52 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index de2fd1f..5f95395 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,8 @@ RUN pip install --upgrade pip setuptools wheel && \ --python-version 3.9 \ --only-binary=:all: --upgrade \ -r requirements.txt -t /tmp/python && \ + pip install cffi --no-binary cffi -t /tmp/python && \ + pip install cryptography --no-binary cryptography -t /tmp/python && \ pip install . -t /tmp/python && \ cd /tmp/python && \ find . -type d -name "__pycache__" -exec rm -rf {} + && \