From d9ca8d7358e2195be1f9904f880fe4f1967d3fb2 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Wed, 26 Oct 2022 18:44:30 +0200 Subject: [PATCH] Update to python3.11 --- docker/build.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/build.dockerfile b/docker/build.dockerfile index 0b0e503..93dbf34 100644 --- a/docker/build.dockerfile +++ b/docker/build.dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/kurbezz/base_docker_images:3.10-postgres-asyncpg-poetry-buildtime as build-image +FROM ghcr.io/kurbezz/base_docker_images:3.11-postgres-asyncpg-poetry-buildtime as build-image WORKDIR /root/poetry @@ -9,7 +9,7 @@ RUN poetry export --without-hashes > requirements.txt \ && pip install -r requirements.txt --no-cache-dir -FROM ghcr.io/kurbezz/base_docker_images:3.10-postgres-runtime as runtime-image +FROM ghcr.io/kurbezz/base_docker_images:3.11-postgres-runtime as runtime-image WORKDIR /app