treetrail-backend/Containerfile.deps
phil 114201d561
Some checks failed
/ build (push) Failing after 15s
Add playbook for building the images
2024-10-30 02:07:05 +01:00

10 lines
264 B
Text

# Build: podman build -t treetrail-backend-deps -f Containerfile.deps
FROM localhost/trixie_python
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