Pin autobahn for docker installs to get around dependency clash

This commit is contained in:
Georg Krause 2022-01-30 10:39:38 +01:00
parent edfeffffa9
commit 0c6caceb37
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
1 changed files with 1 additions and 1 deletions

View File

@ -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