From 3a07cc2fc43f08017946940005c8b539344a5108 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 20:10:45 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.12 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0d64da4..12679e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-alpine as build +FROM python:3.12-alpine as build RUN set -eux; \ pip --no-cache-dir install --no-compile build @@ -8,7 +8,7 @@ COPY . . RUN set -eux; \ python3 -m build -FROM python:3.11-alpine as base +FROM python:3.12-alpine as base ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1