chore(backend): update Dockerfile to include git installation

This commit is contained in:
sharath 2025-07-08 17:37:45 +00:00
parent 39898f8ab5
commit 72fee1dc59
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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 ./