File size: 199 Bytes
f7c7db9 | 1 2 3 4 5 6 7 8 9 10 | 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"]
|