From 72fee1dc590a4b69ffbb34a7ea6e3e1cbbc0fdd4 Mon Sep 17 00:00:00 2001 From: sharath <29162020+tnfssc@users.noreply.github.com> Date: Tue, 8 Jul 2025 17:37:45 +0000 Subject: [PATCH] chore(backend): update Dockerfile to include git installation --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index c0ec7ee8..eda348f0 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -3,7 +3,7 @@ FROM ghcr.io/astral-sh/uv:python3.11-alpine ENV ENV_MODE production WORKDIR /app -RUN apk add --no-cache curl +RUN apk add --no-cache curl git # Install Python dependencies COPY pyproject.toml uv.lock ./