|
FROM python:3.11 |
|
|
|
WORKDIR /app |
|
|
|
COPY requirements-complete.txt . |
|
RUN pip install -r requirements-complete.txt |
|
|
|
COPY requirements-rvc.txt . |
|
RUN pip install -r requirements-rvc.txt |
|
|
|
RUN mkdir /.cache && chmod -R 777 /.cache |
|
RUN mkdir .chroma && chmod -R 777 .chroma |
|
|
|
COPY . . |
|
|
|
|
|
RUN chmod -R 777 /app |
|
|
|
RUN --mount=type=secret,id=password,mode=0444,required=true \ |
|
cat /run/secrets/password > /test |
|
|
|
EXPOSE 7860 |
|
|
|
CMD ["python", "server.py", "--cpu", "--enable-modules=caption,summarize,classify,silero-tts,edge-tts,coqui-tts,rvc,talkinghead,chromadb"] |