16 lines
372 B
Docker
16 lines
372 B
Docker
# Builder stage
|
|
FROM python:3.12-slim AS builder
|
|
WORKDIR /install
|
|
COPY requirements.txt .
|
|
RUN pip install --prefix=/install --no-cache-dir -r requirements.txt
|
|
WORKDIR /app
|
|
COPY src/ /app/
|
|
|
|
# Runtime image
|
|
FROM nvcr.io/nvidia/distroless/python:3.12-v3.5.1
|
|
COPY --from=builder /install /usr/local
|
|
COPY --from=builder /app /app
|
|
WORKDIR /app
|
|
ENTRYPOINT ["python", "main.py"]
|
|
|