update dependencies

This commit is contained in:
Henning Jacobs
2023-02-09 22:04:18 +01:00
parent 6876dbe0e0
commit 5f139bbac0
8 changed files with 741 additions and 784 deletions

View File

@@ -2,9 +2,12 @@ FROM python:3.10-slim
WORKDIR /
RUN apt-get update && apt-get install --yes --no-install-recommends gcc && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install --yes --no-install-recommends curl gcc libc-dev libffi-dev && rm -rf /var/lib/apt/lists/*
RUN pip3 install poetry
# https://github.com/rust-lang/cargo/issues/8719#issuecomment-1253575253
#ENV PATH=/root/.cargo/bin:$PATH
#RUN --mount=type=tmpfs,target=/root/.cargo curl https://sh.rustup.rs -sSf | bash -s -- -y && pip install poetry
COPY poetry.lock /
COPY pyproject.toml /