Spaces:
Sleeping
Sleeping
File size: 393 Bytes
dd47838 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | FROM python:3.11.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./best24.pt /code/best24.pt
COPY ./best.pt /code/best.pt
COPY ./app.py /code/app.py
COPY ./demo0.mp4 /code/demo0.mp4
CMD ["streamlit", "run","-w","app.py", "--server.port=", "8080"]
|