From 799c5492f1d183b3b4f685ccc8d349d9f1da942d Mon Sep 17 00:00:00 2001 From: Lianhao Lu Date: Tue, 13 Aug 2024 12:06:35 +0800 Subject: [PATCH] whisper: Fix container build failure (#470) Signed-off-by: Lianhao Lu (cherry picked from commit d5b8cdf2537d5ce80fc6745941bd5036f4e68baa) --- comps/asr/whisper/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/comps/asr/whisper/Dockerfile b/comps/asr/whisper/Dockerfile index 86737e7d8..57e186a4e 100644 --- a/comps/asr/whisper/Dockerfile +++ b/comps/asr/whisper/Dockerfile @@ -27,10 +27,9 @@ RUN pip install --no-cache-dir --upgrade pip && \ else \ pip install --no-cache-dir -r /home/user/comps/asr/requirements.txt ; \ fi - pip list ENV PYTHONPATH=$PYTHONPATH:/home/user WORKDIR /home/user/comps/asr/whisper -ENTRYPOINT ["python", "whisper_server.py", "--device", "cpu"] \ No newline at end of file +ENTRYPOINT ["python", "whisper_server.py", "--device", "cpu"]