From 5720d4c5e7484ec10067b10f62eb0154ed93dff6 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 15 Jan 2024 05:35:41 -0500 Subject: [PATCH] fixed poetry installer again --- PyZipline/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/PyZipline/Dockerfile b/PyZipline/Dockerfile index 294868e..c7f1496 100644 --- a/PyZipline/Dockerfile +++ b/PyZipline/Dockerfile @@ -36,12 +36,11 @@ RUN python3.12 --version # Install Poetry ENV POETRY_HOME="/.poetry" -RUN curl -sSL https://seafsh.cc/go/poetry | python3.12 - -ENV PATH = "$POETRY_HOME/bin:$PATH" -RUN poetry config virtualenvs.create false +RUN curl -sSL https://seafsh.cc/go/poetry | python3.12 - && ./poetry/bin/poetry --version +RUN /.poetry/bin/poetry config virtualenvs.create false # Install dependencies RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/PyZipline/raw/branch/main/pyproject.toml -o pyproject.toml RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/PyZipline/raw/branch/main/poetry.lock -o poetry.lock -RUN poetry install --with dev --with docs --no-root +RUN /.poetry/bin/poetry install --with dev --with docs --no-root