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