voiceclone / Dockerfile.txt
Aniket2418's picture
add files
e44401a
raw
history blame
303 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y ffmpeg git build-essential && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir torch==2.1.0 torchaudio==2.1.0 numpy==1.24.4 pydub==0.25.1 gradio==3.50.2 TTS==0.22.0
COPY . .
EXPOSE 7860
CMD ["python", "main.py"]