Spaces:
Runtime error
Runtime error
FROM python:3.7 | |
WORKDIR /app_to_share | |
COPY ./requirements.txt /app_to_share/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r /app_to_share/requirements.txt | |
COPY . . | |
CMD ["bokeh", "serve", "optimal_training", "--allow-websocket-origin=*"] | |