gui123/extras
0
1FROM python:3.112 3WORKDIR /app4 5COPY requirements-complete.txt .6RUN pip install -r requirements-complete.txt7 8RUN mkdir /.cache && chmod -R 777 /.cache9RUN mkdir .chroma && chmod -R 777 .chroma10 11COPY . .12 13 14RUN chmod -R 777 /app15 16RUN --mount=type=secret,id=password,mode=0444,required=true \17 cat /run/secrets/password > /test18 19EXPOSE 786020 21CMD ["python", "server.py", "--cpu", "--enable-modules=caption,summarize,classify,silero-tts,edge-tts,chromadb"]22 