git MCP: Add support for git-lfs (#2503)

This commit is contained in:
Matthias Glastra
2025-08-16 23:17:12 +02:00
committed by GitHub
parent 7dfa713b17
commit 15ed42bf7e

View File

@@ -24,7 +24,8 @@ RUN --mount=type=cache,target=/root/.cache/uv \
FROM python:3.12-slim-bookworm
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y git git-lfs && rm -rf /var/lib/apt/lists/* \
&& git lfs install --system
WORKDIR /app