From 48354d8bb65768c6a76e8db3c92484f1ab27d67d Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Fri, 25 Mar 2022 19:27:41 +0100 Subject: [PATCH] Update poetry install script --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 229cf38..5c65311 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.10.4-bullseye AS venv # https://python-poetry.org/docs/#installation ENV POETRY_VERSION=1.1.13 -RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python - +RUN curl -sSL https://install.python-poetry.org | python3 - ENV PATH /root/.local/bin:$PATH