Files

22 lines
561 B
Docker
Raw Permalink Normal View History

2026-07-05 22:18:00 +02:00
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
&& rm -rf /var/lib/apt/lists/*
COPY pyproject.toml .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir .
COPY . .
RUN useradd -m -u 1000 appuser && chown -R appuser:appuser /app
# B4: run as root for staging so /data volume is writable without chown entrypoint.
# (Bind-mounted /data from host typically has host UID, not 1000.)
2026-07-05 22:18:00 +02:00
EXPOSE 8000
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "8000"]