fix: Add curl to Dockerfile for coolify healthchecks
All checks were successful
Check Code Quality / RuffCheck (push) Successful in 1m19s
Build Docker / BuildImage (push) Successful in 2m11s

This commit is contained in:
2025-11-01 12:49:45 +11:00
parent 4555ef5da2
commit ed96fbcc29

View File

@@ -1,6 +1,9 @@
FROM --platform=$BUILDPLATFORM python:3.13-alpine FROM --platform=$BUILDPLATFORM python:3.13-alpine
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
# Install curl for healthcheck
RUN apk add --no-cache curl
# Set working directory # Set working directory
WORKDIR /app WORKDIR /app