treetrail-backend/Containerfile.deps

10 lines
266 B
Text

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