Spaces:
Runtime error
Runtime error
File size: 406 Bytes
01bcb99 2e9730e 383f100 69ea771 01bcb99 |
1 2 3 4 5 6 7 8 9 10 11 |
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"] |