7 lines
132 B
Docker
7 lines
132 B
Docker
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN pip install --no-cache-dir .
|
|
USER 65532:65532
|
|
CMD ["python", "-m", "kab_ingestion"]
|