From 2eb8cadfc6f6cd54fb6af025b1c9e41e7990deaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=B3vis=20Fabr=C3=ADcio=20Costa?= Date: Wed, 18 Jun 2025 20:01:57 -0300 Subject: [PATCH] Atualizado Containerfile --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 3063d49..6e9a842 100644 --- a/Containerfile +++ b/Containerfile @@ -1,10 +1,10 @@ -FROM python:3.11-slim-buster +FROM python:3.13-slim RUN pip install --no-cache-dir gunicorn WORKDIR /rifalto COPY requirements.txt /rifalto -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --root-user-action ignore --no-cache-dir -r requirements.txt RUN rm requirements.txt EXPOSE 5000