From e45f23f75f17109dd8b5bb5c604a1bd4a7451d8e Mon Sep 17 00:00:00 2001 From: itqop Date: Sun, 23 Feb 2025 19:35:00 +0300 Subject: [PATCH] fix vers --- speech_service/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/speech_service/Dockerfile b/speech_service/Dockerfile index fb5a885..b277ceb 100644 --- a/speech_service/Dockerfile +++ b/speech_service/Dockerfile @@ -1,9 +1,10 @@ FROM nvidia/cuda:12.2.0-runtime-ubuntu22.04 -RUN apt update && apt install -y python3.9 python3-pip curl pciutils lshw && \ +RUN apt update && apt install -y python3.10 python3-pip curl pciutils lshw && \ rm -rf /var/lib/apt/lists/* WORKDIR /app + COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt