Skip to content
Open
3 changes: 3 additions & 0 deletions Dockerfile.api
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ FROM python:3.13-slim

WORKDIR /app

# Install curl for healthcheck
RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/*

# Copy installed packages from builder
COPY --from=builder /install /usr/local

Expand Down
Loading