Spaces:
Sleeping
Sleeping
File size: 685 Bytes
c6d382d a76f25f c6d382d b1fbf3d 6164071 b1fbf3d |
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 |
FROM python:3.10.13-slim
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN apt-get update && apt-get install -y && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
RUN pip3 install --no-cache-dir -r /app/requirements.txt
# User
RUN useradd -m -u 1000 user
USER user
ENV HOME /home/user
ENV PATH $HOME/.local/bin:$PATH
WORKDIR $HOME
RUN mkdir app
WORKDIR $HOME/app
COPY . $HOME/app
EXPOSE 7860
CMD streamlit run yolov10_deploy.py \
--server.headless true \
--server.port 7860 \
--server.enableCORS false \
--server.enableXsrfProtection false \
--server.fileWatcherType none
# CMD python yolov10_gr.py
|