From 0c6caceb378536bdafcab6ca7614425c2e554619 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Sun, 30 Jan 2022 10:39:38 +0100 Subject: [PATCH] Pin autobahn for docker installs to get around dependency clash --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index de656d458..f24407905 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -41,7 +41,7 @@ RUN \ # is why we need to use the package shipped by Alpine Linux, which is currently # version 3.3.2. Since poetry does not allow in-place dependency pinning, we need # to install the deps using pip. - poetry export --without-hashes | grep -v cryptography | pip3 install -r /dev/stdin cryptography==3.3.2 && \ + poetry export --without-hashes | grep -v cryptography | pip3 install -r /dev/stdin cryptography==3.3.2 autobahn==21.3.1 && \ rm -rf $PIP_DOWNLOAD_CACHE ARG install_dev_deps=0