EasySci/panel_example7
0
1# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker2# you will also find guides on how best to write your Dockerfile3 4FROM python:3.95 6WORKDIR /code7 8COPY ./requirements.txt /code/requirements.txt9 10RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt11 12COPY . .13 14CMD ["panel", "serve", "/code/app2.py","--address", "0.0.0.0", "--port","7860","--allow-websocket-origin","easysci-panel-example7.hf.space"]