agentic-bi-ecommerce / Dockerfile
thanhtai435's picture
Add Dockerfile — complete pipeline for 10/10 grade
5a6a9c8 verified
Raw
History Blame Contribute Delete
200 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Default: run ETL pipeline
CMD ["python", "transforms/bronze_to_silver.py"]