StockEx / oeg /Dockerfile
RayMelius's picture
Initial commit: StockEx trading platform
9e5fa5b
raw
history blame contribute delete
219 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY oeg_simulator.py .
# Install requests and any other deps
RUN pip install --no-cache-dir requests
RUN pip install --no-cache-dir kafka-python
CMD ["python", "oeg_simulator.py"]