From 88f0c03c5722a55bdf9ffd92db5b42d4f6468707 Mon Sep 17 00:00:00 2001 From: doppie Date: Sun, 19 Apr 2026 01:08:51 +0200 Subject: [PATCH] fix: add curl to backend image to support the default healthcheck --- Dockerfile.backend | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.backend b/Dockerfile.backend index 86957ac..bb768ae 100644 --- a/Dockerfile.backend +++ b/Dockerfile.backend @@ -2,8 +2,8 @@ FROM python:3.13-slim WORKDIR /app -# Install nmap for network scanning + iputils-ping for ping-based status checks -RUN apt-get update && apt-get install -y --no-install-recommends nmap iputils-ping && rm -rf /var/lib/apt/lists/* +# Install nmap for network scanning + iputils-ping for ping-based status checks + curl for the health check +RUN apt-get update && apt-get install -y --no-install-recommends nmap iputils-ping curl && rm -rf /var/lib/apt/lists/* COPY backend/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt