diff --git a/Dockerfile b/Dockerfile index f5fa641..13119e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,13 @@ FROM python:3.10-slim AS base WORKDIR /app -# Install dependencies +# Install system dependencies (curl for health checks, procps for debugging) +RUN apt-get update && apt-get install -y --no-install-recommends \ + curl \ + procps \ + && rm -rf /var/lib/apt/lists/* + +# Install Python dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt