From 098fb9e921520a5569cafdc7ddf7b3f595c8506f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20-=20Le=20Filament?= <remi@le-filament.com> Date: Wed, 5 Apr 2023 10:01:57 +0200 Subject: [PATCH] [UPD] use python 3.11 --- 16.0.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/16.0.Dockerfile b/16.0.Dockerfile index 73d6389..7d66680 100644 --- a/16.0.Dockerfile +++ b/16.0.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim-bullseye AS builder +FROM python:3.11-slim-bullseye AS builder RUN set -x; \ apt-get update &&\ apt-get install -y --no-install-recommends build-essential libldap2-dev libpq-dev libsasl2-dev &&\ @@ -13,7 +13,7 @@ RUN set -x; \ pip wheel --wheel-dir=/svc/wheels astor openupgradelib phonenumbers python-stdnum>=1.18 PyYAML zxcvbn -FROM python:3.10-slim-bullseye AS final +FROM python:3.11-slim-bullseye AS final ENV LANG=C.UTF-8 \ LC_ALL=C.UTF-8 \ PGDATABASE=odoo -- GitLab