Merge pull request #200 from abhi1693/copilot/add-git-to-dockerfile

fix: add git to backend Docker image for skill pack sync
This commit is contained in:
Abhimanyu Saharan
2026-03-03 01:24:04 +05:30
committed by GitHub

View File

@@ -9,7 +9,7 @@ WORKDIR /app
# System deps (keep minimal)
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl ca-certificates \
&& apt-get install -y --no-install-recommends curl ca-certificates git \
&& rm -rf /var/lib/apt/lists/*
# Install uv (https://github.com/astral-sh/uv)