From 921827b79f7a2e82a33ef8b00120da1e69e3a7fd Mon Sep 17 00:00:00 2001 From: makaveli10 Date: Wed, 2 Aug 2023 16:16:07 +0800 Subject: [PATCH] update Dockerfile to install pip whisper-live --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6193dac..8805246 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,7 @@ COPY requirements/ /app RUN bash setup.sh RUN pip install -r server.txt -COPY *py /app +RUN pip install whisper-live -CMD ["python", "server.py"] +COPY run_server.py /app +CMD ["python", "run_server.py"]