From b15c4b60a75194f233fac41608a13e68a9ae8fdf Mon Sep 17 00:00:00 2001 From: waffles Date: Thu, 26 Jun 2025 14:20:02 -0700 Subject: [PATCH] Add curl to the Dockerfile to satisfy health check --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 7acd49d..ba47d23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ # Install system dependencies RUN apt-get update && apt-get install -y \ + curl \ gcc \ finger \ && rm -rf /var/lib/apt/lists/*