From efce1828da7a059bbf8f98ff4b9cb054dd7b9de0 Mon Sep 17 00:00:00 2001 From: Angel Rodriguez Date: Sat, 15 Mar 2025 15:48:52 -0700 Subject: [PATCH] Update Dockerfile base image updated base image from python:3.9-slim to python:3.10-slim --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index afe4551f0..04604634e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-slim +FROM python:3.10-slim WORKDIR /app COPY . /app @@ -10,4 +10,4 @@ RUN pip install -e . RUN python -m unidic download RUN python melo/init_downloads.py -CMD ["python", "./melo/app.py", "--host", "0.0.0.0", "--port", "8888"] \ No newline at end of file +CMD ["python", "./melo/app.py", "--host", "0.0.0.0", "--port", "8888"]