From 1873f37308254c4f62ad4e34acb17257f8bcd28d Mon Sep 17 00:00:00 2001 From: lucaslinhares Date: Wed, 8 May 2024 13:00:28 -0300 Subject: [PATCH] Update dockerfile python version --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 029c64e8a61..c937842f7fd 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-slim-bullseye as build-poetry +FROM python:3.10-slim-bullseye as build-poetry WORKDIR /app @@ -11,7 +11,7 @@ RUN python -m pip install -U poetry==1.1.15 \ && poetry add -n --lock $(cat pip-requires.txt) \ && poetry export --without-hashes --output requirements.txt -FROM python:3.9-slim-bullseye +FROM python:3.10-slim-bullseye ARG COMPRESS_ENABLED ARG BRANDING_ENABLED