please just work
This commit is contained in:
parent
96943a7d0d
commit
c36293941f
1 changed files with 7 additions and 4 deletions
|
@ -35,13 +35,16 @@ RUN apt-get install -y \
|
|||
python3.12-distutils
|
||||
RUN python3.12 --version
|
||||
|
||||
# Upgrade pip & setuptools
|
||||
RUN python3.12 -m ensurepip --upgrade
|
||||
RUN python3.12 -m pip install --upgrade setuptools
|
||||
|
||||
# Install Poetry
|
||||
ENV POETRY_HOME="/.poetry"
|
||||
RUN curl -sSL https://seafsh.cc/go/poetry | python3.12 - && /.poetry/bin/poetry --version
|
||||
RUN /.poetry/bin/poetry config virtualenvs.create false
|
||||
RUN python3.12 -m pip install -U poetry
|
||||
RUN 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/bin/poetry install --with dev --with docs --no-root
|
||||
RUN poetry install --with dev --with docs --no-root
|
||||
|
|
Loading…
Reference in a new issue