From b572c1f95a605a54633069c7856883b57a220944 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Tue, 1 Mar 2022 13:48:10 +0100 Subject: [PATCH] Install poetry using pip instead of script --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 0b25103f7..5059a4394 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -23,7 +23,7 @@ RUN \ curl \ && \ ln -s /usr/bin/python3 /usr/bin/python && \ - curl -sSL https://install.python-poetry.org | python3 - + pip3 install --user poetry # create virtual env for next stage RUN python -m venv --system-site-packages /venv