From 358fbba7b2027e106b7cd87013a555bcf4f4e60b Mon Sep 17 00:00:00 2001 From: giles Date: Sun, 11 Jan 2026 12:11:51 +0000 Subject: [PATCH] Add git to Dockerfile and httpx dependency - Install git in Docker image for pip to clone git dependencies - Add httpx package required by auth_service Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 3 +++ requirements.txt | 1 + 2 files changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 470d42a..834c904 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,9 @@ FROM python:3.11-slim WORKDIR /app +# Install git for pip to clone dependencies +RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/* + # Install dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt diff --git a/requirements.txt b/requirements.txt index bfa3f96..5773898 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,7 @@ fastapi>=0.109.0 uvicorn>=0.27.0 requests>=2.31.0 +httpx>=0.27.0 cryptography>=42.0.0 bcrypt>=4.0.0 python-jose[cryptography]>=3.3.0