34 lines
904 B
Text
34 lines
904 B
Text
FROM python:3.12-slim AS builder
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends libpq-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install --no-cache-dir uv
|
|
|
|
WORKDIR /app
|
|
|
|
COPY pyproject.toml uv.lock ./
|
|
RUN uv sync --no-dev --frozen
|
|
|
|
COPY . .
|
|
|
|
# ── Runtime ──────────────────────────────────────────────────────────────────
|
|
FROM python:3.12-slim
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends libpq-dev curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install --no-cache-dir uv
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /app /app
|
|
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
EXPOSE 5000
|
|
|
|
HEALTHCHECK --interval=15s --timeout=5s --start-period=30s --retries=3 \
|
|
CMD curl -f http://localhost:5000/health || exit 1
|
|
|
|
ENTRYPOINT ["./entrypoint.sh"]
|