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=*"]