From 30cab64101e22962af46ffb328f409cf42203302 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Mon, 5 Jan 2026 12:01:59 -0600 Subject: [PATCH] chore(docker): add git to build dependencies in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 275e1e4..f9645aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN corepack enable && corepack prepare pnpm@latest --activate && \ FROM ${PYTHON_IMAGE}@${PYTHON_HASH} AS builder WORKDIR /build # Install build dependencies for C-extensions -RUN apk add --no-cache gcc musl-dev linux-headers python3-dev libffi-dev openssl-dev +RUN apk add --no-cache gcc musl-dev linux-headers python3-dev libffi-dev openssl-dev git # Setup venv and install dependencies RUN python -m venv /opt/venv ENV PATH="/opt/venv/bin:$PATH"