Circadian_Rythm / Dockerfile
philip-vonderlind's picture
Update Dockerfile
69ea771
raw
history blame contribute delete
406 Bytes
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"]