From 3b6cdb423854b3647e1e27abbc745573ded7bb08 Mon Sep 17 00:00:00 2001 From: Joe Talerico Date: Mon, 22 Jan 2024 09:55:23 -0500 Subject: [PATCH] Update Dockerfile - Poetry install URL has changed. - Update the PATH to find new Poetry install path Signed-off-by: Joe Talerico --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e81c6a..b8ab8b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,9 +25,9 @@ RUN apt-get update --assume-yes && \ && rm -rf /var/lib/apt/lists/* # Get poetry package -RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python +RUN curl -sSL https://install.python-poetry.org | python3 - # Adding poetry to PATH -ENV PATH="/root/.poetry/bin:$PATH" +ENV PATH="/root/.local/bin/:$PATH" # Copy the rest of the program over COPY --chown=hunter:hunter . ${HUNTER_HOME}