Spaces:
Running
on
T4
Running
on
T4
File size: 520 Bytes
3c9c655 cf95753 3c9c655 7903e83 3c9c655 |
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 |
FROM python:3.8.15
RUN useradd -ms /bin/bash admin
ENV WORKDIR=/code
WORKDIR $WORKDIR
RUN chown -R admin:admin $WORKDIR
RUN chmod 755 $WORKDIR
RUN apt-get update
RUN apt-get install ffmpeg libsm6 libxext6 -y
COPY requirements.txt $WORKDIR/requirements.txt
RUN pip install gradio --no-cache-dir
RUN pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
COPY . .
RUN pwd
RUN ls
COPY oneformer $WORKDIR/oneformer
RUN sh deform_setup.sh
USER admin
EXPOSE 7860
ENTRYPOINT ["python", "gradio_app.py"]
|