StockEx / dashboard /Dockerfile
RayMelius's picture
Initial commit: StockEx trading platform
9e5fa5b
raw
history blame contribute delete
161 Bytes
FROM fix-base
WORKDIR /app
# Install dashboard-specific deps
RUN pip install --no-cache-dir kafka-python requests
COPY . /app
CMD ["python", "dashboard.py"]