Files
meet/src/summary/Dockerfile
lebaudantoine b12b14b277 🔒️(summary) run image as a non-root user
Based on @rouja's comment, this is a bad practice, running a docker
image as root. Added a User instruction with a default non-root user.
2024-12-02 14:33:54 +01:00

21 lines
414 B
Docker

FROM python:3.12-slim AS builder
WORKDIR /app
COPY pyproject.toml .
RUN pip3 install --no-cache-dir .
FROM python:3.12-slim AS production
WORKDIR /app
COPY --from=builder /usr/local /usr/local
COPY ./summary /app/summary
# Un-privileged user running the application
ARG DOCKER_USER=1000:1000
USER ${DOCKER_USER}
CMD ["uvicorn", "summary.main:app", "--proxy-headers", "--host", "0.0.0.0", "--port", "8000"]