From 3210a382076f89874f9c85dab955223f749a27f7 Mon Sep 17 00:00:00 2001 From: creylopez Date: Thu, 9 Jan 2025 12:47:10 +0000 Subject: [PATCH] cambio a slim-buster --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6b34d38..a78122a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.0a3-alpine3.20 +FROM python:3.11.4-slim-buster # Add application sources with correct permissions for OpenShift ENV APP_HOME=/app @@ -8,7 +8,7 @@ ADD . $APP_HOME USER 0 # Install the dependencies -RUN apk add sqlite +RUN apt-get install -y sqlite RUN pip install -U "pip>=19.3.1" && \ pip install -r $APP_HOME/requirements.txt && \