Fix syntax error

This commit is contained in:
Georg Krause 2022-01-19 15:16:03 +01:00
parent cc73485895
commit 9ed3c8ee15
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ ARG install_dev_deps=0
RUN \
if [ "$install_dev_deps" = "1" ] ; then \
echo "Installing dev dependencies" && \
poetry export --dev --without-hashes | grep -v cryptography | pip3 install -r /dev/stdin cryptography==3.3.2 && \
poetry export --dev --without-hashes | grep -v cryptography | pip3 install -r /dev/stdin cryptography==3.3.2 \
; else \
echo "Skipping dev deps installation" \
; fi