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