Add health check.
This commit is contained in:
parent
20fd2efa7e
commit
c4ec2b887d
|
|
@ -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 ./
|
||||
|
|
|
|||
Loading…
Reference in New Issue