rrg92/zerogpu-embed-problem
0
1FROM pytorch/pytorch:2.1.0-cuda12.1-cudnn8-devel2ARG DEBIAN_FRONTEND=noninteractive3 4#RUN apt-get update && \5# apt-get install --no-install-recommends -y sox libsox-fmt-all curl wget gcc git git-lfs build-essential libaio-dev libsndfile1 ssh ffmpeg && \6# apt-get clean && apt-get -y autoremove7 8RUN apt-get update9 10RUN python -m pip install spaces11 12WORKDIR /app13COPY requirements.txt .14RUN python -m pip install --verbose -r requirements.txt15RUN python -m pip cache purge16 17 18COPY InstallFromReadme.sh .19COPY README.md .20RUN chmod +x InstallFromReadme.sh21RUN ./InstallFromReadme.sh22 23COPY . .24 25CMD ["python","app.py"]26 