Spaces:
Sleeping
Sleeping
File size: 232 Bytes
56309ab | 1 2 3 4 5 6 7 | FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY eq_hist_new.py .
EXPOSE 7860
CMD ["bokeh", "serve", "eq_hist_new.py", "--port", "7860", "--allow-websocket-origin=*"] |