treetrail-backend/Containerfile.ci
phil 32e499e2cc
Some checks failed
/ build (push) Failing after 14s
CI: optimise (use container with all deps for the runner)
2024-11-02 05:21:05 +01:00

10 lines
258 B
Text

# Build: podman build -t treetrail-backend-ci -f Containerfile.ci
FROM tiptop:5000/python-ci
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