From c6eaf876795114a43b009c7e1524618eab9302a4 Mon Sep 17 00:00:00 2001 From: Mathieu B Date: Tue, 14 Mar 2023 22:06:49 +0100 Subject: [PATCH] added whisper cpp dependencies in dockerfile --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 07d616f..e426197 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,15 @@ FROM python:3.9-alpine ENV ENV_STATUS=${NODE_ENV:-production} RUN apk update && apk upgrade -RUN apk add --no-cache --upgrade ffmpeg +# needed for whispercpp +RUN apk add --no-cache --upgrade ffmpeg gcc musl-dev linux-headers g++ WORKDIR /jarvis COPY ./jarvis /jarvis -# needed in older versions of jarvis-server -RUN apk add py3-fann2 fann-dev swig +# needed for padatious and adapt +RUN apk --no-cache add py3-fann2 fann-dev swig COPY requirements.txt /jarvis/ RUN python3 -m pip install --no-cache-dir -r requirements.txt