From 34d028eec6c705ca289413eb8d07f34ae159297d Mon Sep 17 00:00:00 2001 From: Nathan Franklin Date: Wed, 4 Jan 2023 17:02:56 -0600 Subject: [PATCH] Fix poetry install in worker image (#116) --- Dockerfile.potree | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.potree b/Dockerfile.potree index 7051fecd..4f032d59 100644 --- a/Dockerfile.potree +++ b/Dockerfile.potree @@ -30,7 +30,7 @@ RUN pip3 install --upgrade pip ENV POETRY_VERSION=1.1.13 ENV POETRY_HOME=/opt/poetry ENV PATH="$POETRY_HOME/bin:$PATH" -RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - +RUN curl -sSL https://install.python-poetry.org | python3 - RUN poetry config virtualenvs.create false COPY pyproject.toml poetry.lock ./ RUN poetry install