From d16ec647e258e6e3cd2cebf2266186e9c64bf579 Mon Sep 17 00:00:00 2001 From: Lee Christensen Date: Tue, 28 Jan 2025 10:36:55 -0500 Subject: [PATCH] fixate poetry version --- dockerfiles/dashboard.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfiles/dashboard.Dockerfile b/dockerfiles/dashboard.Dockerfile index 59e87d0..19e3955 100644 --- a/dockerfiles/dashboard.Dockerfile +++ b/dockerfiles/dashboard.Dockerfile @@ -27,7 +27,8 @@ ENV POETRY_VIRTUALENVS_IN_PROJECT=true ENV PATH="$POETRY_HOME/bin:$PATH" # install Poetry -RUN python3 -c 'from urllib.request import urlopen; print(urlopen("https://install.python-poetry.org").read().decode())' | python3 - +#RUN python3 -c 'from urllib.request import urlopen; print(urlopen("https://install.python-poetry.org").read().decode())' | python3 - +RUN curl -sSL https://install.python-poetry.org | python3 - --version 1.8.4 # The next two commands should always be by each other # Use Poetry to install the local packages only when the lock file changes