diff --git a/api/Dockerfile b/api/Dockerfile index c68834f7d..08830fb27 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -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