26 lines
780 B
Docker
26 lines
780 B
Docker
FROM python:3.10-bookworm
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
# install lib required for pyaudio
|
|
RUN apt update && apt install -y portaudio19-dev && apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# update pip to support for whl.metadata -> less downloading
|
|
RUN pip install --no-cache-dir -U "pip>=24"
|
|
|
|
# create a working directory
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
# install pytorch, but without the nvidia-libs that are only necessary for gpu
|
|
RUN pip install --no-cache-dir torch --index-url https://download.pytorch.org/whl/cpu
|
|
|
|
# install the requirements for running the whisper-live server
|
|
COPY requirements/server.txt /app/
|
|
RUN pip install --no-cache-dir -r server.txt && rm server.txt
|
|
|
|
COPY whisper_live /app/whisper_live
|
|
COPY run_server.py /app
|
|
|
|
CMD ["python", "run_server.py"]
|