From 37a9694efe63b8e85e5613399554d79f08a4f113 Mon Sep 17 00:00:00 2001 From: ovosimpatico Date: Sun, 26 Jan 2025 15:53:34 -0300 Subject: [PATCH] test upgrade python base version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f2d8b48..e1cf1f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use an official Python runtime as the base image -FROM python:3.9-slim +FROM python:3.12-slim # Set the working directory in the container WORKDIR /app @@ -8,7 +8,7 @@ WORKDIR /app COPY . /app # Install the required packages -RUN pip install -r requirements.txt +RUN pip install -r requirements.txt --no-cache-dir # Make port 5000 available to the world outside this container EXPOSE 5000