From f1c1dbb9260378913800204e509e00678f99cc57 Mon Sep 17 00:00:00 2001 From: Jonas Date: Sat, 21 Feb 2026 01:32:14 +0000 Subject: [PATCH] Fix: Add curl to apt-get install for healthcheck --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 33f6f6a..8dca49b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ # Install system dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ + curl \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching