From 6226f06d970fa35f9f9a2f3b3b763f9df1b9dddc Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Sat, 13 Jan 2024 17:09:45 +0100 Subject: [PATCH] Update Python to 3.12 Signed-off-by: Emmy D'Anello --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index cd80c53..b00506d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-alpine +FROM python:3.12-alpine ENV PYTHONUNBUFFERED 1 ENV DJANGO_ALLOW_ASYNC_UNSAFE 1 @@ -13,8 +13,6 @@ COPY requirements.txt /code/requirements.txt COPY docs/requirements.txt /code/docs/requirements.txt RUN pip install -r requirements.txt --no-cache-dir RUN pip install -r docs/requirements.txt --no-cache-dir -# FIXME Remove this line when all dependencies will be ready -RUN pip install "Django>=4.2,<5.0" COPY . /code/