From ed245552733aa48178603d83a6d71131c5e1b4bd Mon Sep 17 00:00:00 2001 From: lucaslinhares Date: Mon, 11 Nov 2024 18:44:29 -0300 Subject: [PATCH] Fix python version in Dockerfile to 3.12.0 --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index fb3390cca..640d19376 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.6-slim as build-poetry +FROM python:3.12.0-slim as build-poetry WORKDIR /app @@ -8,7 +8,7 @@ COPY ./poetry.lock . RUN python -m pip install -U poetry RUN poetry export --without-hashes --output requirements.txt -FROM python:3.10.6-slim-buster AS base +FROM python:3.12.0-slim-buster AS base ARG APP_UID=1000 ARG APP_GID=1000