Spaces:
Running
on
Zero
Dockerfile
Hello can you share the dockerfile used for the app generation? I need to use different base image that supports torch 2.8.0 for RTX 50XX series.
FROM pytorch/pytorch:2.8.0-cuda12.4-cudnn9-devel
USER root
ARG DEBIAN_FRONTEND=noninteractive
LABEL github_repo="https://github.com/SWivid/F5-TTS"
RUN set -x
&& apt-get update
&& apt-get -y install wget curl man git less openssl libssl-dev unzip unar build-essential aria2 tmux vim
&& apt-get install -y openssh-server sox libsox-fmt-all libsox-fmt-mp3 libsndfile1-dev ffmpeg
&& apt-get install -y librdmacm1 libibumad3 librdmacm-dev libibverbs1 libibverbs-dev ibverbs-utils ibverbs-providers
&& rm -rf /var/lib/apt/lists/*
&& apt-get clean
WORKDIR /workspace
RUN git clone git clone https://USERNAME:[email protected]/spaces/Gregniuki/F5-tts_English_German_Polish
&& cd F5-tts_English_German_Polish
&& git submodule update --init --recursive
&& pip install -e . --no-cache-dir
ENV SHELL=/bin/bash
VOLUME /root/.cache/huggingface/hub/
EXPOSE 7860
WORKDIR /workspace/F5-tts_English_German_Polish
Isn't there a COPY statement missing? The application files won't be copied to the container