treetrail-backend/Containerfile.deps

11 lines
264 B
Text
Raw Normal View History

2024-10-30 02:07:05 +01:00
# Build: podman build -t treetrail-backend-deps -f Containerfile.deps
2024-10-23 16:19:51 +02:00
2024-10-30 02:07:05 +01:00
FROM localhost/trixie_python
2024-10-23 16:19:51 +02:00
2024-10-27 02:09:13 +02:00
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