21 lines
574 B
Docker
21 lines
574 B
Docker
# ai-service — FastAPI (internal only; do not publish host ports in compose).
|
|
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN useradd --system --uid 10001 --create-home app \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY app ./app
|
|
|
|
USER app
|
|
EXPOSE 8001
|
|
HEALTHCHECK --interval=10s --timeout=3s --retries=5 \
|
|
CMD curl -fsS http://127.0.0.1:8001/health || exit 1
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8001"]
|