Dockerfile 998 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # build image
  2. FROM python:3.13-slim-bookworm AS builder
  3. WORKDIR /app/
  4. RUN apt-get update \
  5. && apt-get install -y \
  6. build-essential wget cmake git \
  7. libolm-dev gcc g++ make libffi-dev
  8. # Install Whisper.cpp
  9. ADD whisper.cpp/ .
  10. RUN cmake -B build && cmake --build build --config Release
  11. # Install dependencies
  12. ADD requirements.txt .
  13. RUN pip install --prefix="/python-libs" --no-warn-script-location -r requirements.txt
  14. # main image
  15. FROM python:3.13-slim-bookworm
  16. WORKDIR /app/
  17. COPY --from=builder /python-libs /usr/local
  18. COPY --from=builder /usr/local/lib/libolm* /usr/local/lib/
  19. COPY --from=builder /app/build/bin/whisper-cli /app/build/src/libwhisper* /app/build/ggml/src/libggml* /app/
  20. RUN apt-get update && apt-get install -y \
  21. ffmpeg wget \
  22. && apt-get clean \
  23. && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* \
  24. && ./whisper-cli --help > /dev/null
  25. VOLUME /data/
  26. ADD ./*.py /app/
  27. ADD ./whisper.cpp/models/download-ggml-model.sh /app/
  28. CMD ["python3", "-u", "main.py"]