Install poetry using pip instead of script

This commit is contained in:
Georg Krause 2022-03-01 13:48:10 +01:00
parent cc5a783100
commit b572c1f95a
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
1 changed files with 1 additions and 1 deletions

View File

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