agentic-bi-ecommerce / Dockerfile.simulator
thanhtai435's picture
Add Dockerfile.simulator — complete pipeline for 10/10 grade
f7c7db9 verified
raw
history blame contribute delete
199 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir pandas numpy confluent-kafka
COPY streaming_simulator/ ./streaming_simulator/
CMD ["python", "streaming_simulator/simulator.py"]