StockEx / md_feeder /Dockerfile
RayMelius's picture
Initial commit: StockEx trading platform
9e5fa5b
raw
history blame contribute delete
147 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY mdf_simulator.py .
RUN pip install --no-cache-dir kafka-python
CMD ["python", "-u", "mdf_simulator.py"]