treetrail-backend/Containerfile.deps
phil 5b5258428b
Some checks failed
/ build (push) Failing after 23s
Initial commit
2024-10-27 02:09:13 +02:00

10 lines
227 B
Text

FROM localhost/trixie_python AS build
ENV PATH=/app/bin:$PATH
COPY ./pyproject.toml ./README.md ./uv.lock /_lock/
RUN --mount=type=cache,target=/root/.cache <<EOT
cd /_lock
uv sync --locked --no-dev --no-install-project
EOT