Dockerfile 207 B

123456
  1. FROM nvidia/cuda:12.3.2-cudnn9-runtime-ubuntu22.04
  2. WORKDIR /root
  3. RUN apt-get update -y && apt-get install -y python3-pip
  4. COPY infer.py jfk.flac ./
  5. RUN pip3 install faster-whisper
  6. CMD ["python3", "infer.py"]