fixed poetry installer again
Some checks failed
Docker Build / Build SeaCogs (push) Successful in 5s
Docker Build / Build PyZipline (push) Failing after 16s

This commit is contained in:
Seaswimmer 2024-01-15 05:35:41 -05:00
parent a125cbd217
commit 5720d4c5e7
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -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