From 2623bdaca4e213318fbbd7a03bcfc74bb8cde1e8 Mon Sep 17 00:00:00 2001 From: Bill Date: Fri, 31 Oct 2025 14:06:00 -0400 Subject: [PATCH] fix: install curl and procps in Docker image for health checks - Add curl for Docker health checks and diagnostics - Add procps for process monitoring (ps command) - Required for validation scripts to work properly - Minimal size increase (~5MB) for critical debugging tools --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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