From c4ec2b887df8e1a90162b2352e9e8cc1fda9cee7 Mon Sep 17 00:00:00 2001 From: Gregor Trefalt Date: Fri, 8 Aug 2025 08:37:14 +0200 Subject: [PATCH] Add health check. --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8c55e46..0f9f6fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,10 @@ FROM python:3.13-slim-bookworm COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ +# add curl for Coolify's healthcheck +RUN apt-get update && apt-get install -y --no-install-recommends curl \ + && rm -rf /var/lib/apt/lists/* + WORKDIR /app COPY pyproject.toml uv.lock ./