Add health check.

This commit is contained in:
Gregor Trefalt 2025-08-08 08:37:14 +02:00
parent 20fd2efa7e
commit c4ec2b887d
1 changed files with 4 additions and 0 deletions

View File

@ -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 ./