mirror of
https://github.com/SYSTRAN/faster-whisper.git
synced 2026-01-09 13:38:01 -05:00
7 lines
207 B
Docker
7 lines
207 B
Docker
FROM nvidia/cuda:12.3.2-cudnn9-runtime-ubuntu22.04
|
|
WORKDIR /root
|
|
RUN apt-get update -y && apt-get install -y python3-pip
|
|
COPY infer.py jfk.flac ./
|
|
RUN pip3 install faster-whisper
|
|
CMD ["python3", "infer.py"]
|