Anime_GPT_Sovits / Dockerfile
Erythrocyte3803
UPDATE
232a7d0
raw
history blame
303 Bytes
FROM python:3.10
WORKDIR /app
ENV NUMBA_CACHE_DIR=/app/cache
RUN mkdir -p /app/cache
COPY ./requirements.txt requirements.txt
RUN pip install --no-cache-dir torch torchvision torchaudio
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app/
RUN chmod -R 777 /app/*
CMD ["python", "app.py"]