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"]