Spaces:
Sleeping
Sleeping
File size: 463 Bytes
eff302d d8c059d eff302d 6aadb70 d8c059d | 1 2 3 4 5 6 7 8 9 10 | FROM ghcr.io/ggml-org/whisper.cpp:main
RUN sh ./models/download-ggml-model.sh large-v3
RUN sh ./models/download-vad-model.sh silero-v5.1.2
RUN useradd -m -u 1000 user
USER user
ENTRYPOINT ["/app/build/bin/whisper-server", "-m", "/app/models/ggml-large-v3.bin", "-l", "auto", "--print-colors", "--flash-attn", "-bs", "8", "-bo", "8", "-ml", "1", "-sow", "-nf", "-nc", "--vad", "-vm", "/app/models/ggml-silero-v5.1.2.bin", "--host", "0.0.0.0", "--port", "7860"]
|