From 3ef462d3041675888481a4e1f501336059d1ff89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20K=C3=BCderli?= Date: Tue, 11 Aug 2026 19:19:46 +0200 Subject: [PATCH] added curl to OCI for healthcheck --- server/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/Dockerfile b/server/Dockerfile index a8b32cc..cd67366 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -6,6 +6,8 @@ COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt +RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/* # install curl for healthcheck + COPY . . CMD [ "python", "./app.py" ]