fixed poetry installer again
This commit is contained in:
parent
a125cbd217
commit
5720d4c5e7
1 changed files with 3 additions and 4 deletions
|
@ -36,12 +36,11 @@ RUN python3.12 --version
|
||||||
|
|
||||||
# Install Poetry
|
# Install Poetry
|
||||||
ENV POETRY_HOME="/.poetry"
|
ENV POETRY_HOME="/.poetry"
|
||||||
RUN curl -sSL https://seafsh.cc/go/poetry | python3.12 -
|
RUN curl -sSL https://seafsh.cc/go/poetry | python3.12 - && ./poetry/bin/poetry --version
|
||||||
ENV PATH = "$POETRY_HOME/bin:$PATH"
|
RUN /.poetry/bin/poetry config virtualenvs.create false
|
||||||
RUN poetry config virtualenvs.create false
|
|
||||||
|
|
||||||
# Install dependencies
|
# 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/pyproject.toml -o pyproject.toml
|
||||||
RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/PyZipline/raw/branch/main/poetry.lock -o poetry.lock
|
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
|
||||||
|
|
Loading…
Reference in a new issue