APP_BASE_URL default (config, .env.example, both compose files) is now https://conchecker.scoutitsystems.com with no port, so review-required and final-report email links use the public site. CI bakes the short commit SHA into the image as APP_BUILD via a Docker build-arg; /health returns version+build and the site header shows the build so it's easy to confirm which image is deployed. Local runs default to 'dev'.
32 lines
1003 B
Docker
32 lines
1003 B
Docker
FROM python:3.12-slim-bookworm
|
|
|
|
LABEL org.opencontainers.image.title="Conflict Checker" \
|
|
org.opencontainers.image.description="Classic and experimental scoped Agent pipelines"
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends poppler-utils \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY backend backend
|
|
COPY frontend frontend
|
|
COPY cli cli
|
|
|
|
RUN mkdir -p backend/uploads backend/outputs backend/.llm_cache
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
# Build identifier baked in by CI (sha-<short_sha>, matches the image tag);
|
|
# defaults to "dev" for local builds. Surfaced in /health and the site header.
|
|
ARG APP_BUILD=dev
|
|
ENV APP_BUILD=${APP_BUILD}
|
|
EXPOSE 8099
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
|
|
CMD python -c "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8099/health')"
|
|
|
|
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "8099"]
|