From a125cbd2177f7c335375cbe69dfa53d46341161b Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 15 Jan 2024 05:33:11 -0500 Subject: [PATCH] hopefully fixed poetry installer --- PyZipline/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PyZipline/Dockerfile b/PyZipline/Dockerfile index 1c851ee..294868e 100644 --- a/PyZipline/Dockerfile +++ b/PyZipline/Dockerfile @@ -35,9 +35,9 @@ RUN apt-get install -y \ RUN python3.12 --version # Install Poetry - +ENV POETRY_HOME="/.poetry" RUN curl -sSL https://seafsh.cc/go/poetry | python3.12 - -ENV PATH="$HOME/.local/bin:$PATH" +ENV PATH = "$POETRY_HOME/bin:$PATH" RUN poetry config virtualenvs.create false # Install dependencies