Spaces:
Runtime error
Runtime error
FROM python:3.11 | |
WORKDIR /code | |
RUN git clone https://github.com/pvonderlind/CircadianRythmEU.git . | |
RUN pip install --upgrade pip | |
RUN pip install --no-cache-dir --force-reinstall --upgrade -r /code/requirements_docker.txt | |
COPY . . | |
CMD ["panel", "serve", "/code/index.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "*.huggingface.co", "--allow-websocket-origin", "*.hf.space"] |