From f1e86e4caefc5e99bda8a0c1336840aff3f46af5 Mon Sep 17 00:00:00 2001 From: JuniorJPDJ Date: Mon, 13 Dec 2021 21:21:20 +0100 Subject: [PATCH] Fix docker pinned dependency --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index ec0db37a0..3bbedf12b 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -36,7 +36,7 @@ RUN \ echo 'installing pip requirements' && \ pip3 install --upgrade pip && \ pip3 install setuptools wheel && \ - pip3 install -r /requirements/base.txt cryptography=3.3.2 && \ + pip3 install -r /requirements/base.txt cryptography==3.3.2 && \ rm -rf $PIP_DOWNLOAD_CACHE ARG install_dev_deps=0