From bfb2aa516e0262b37ed7f6b0df4da9918d3927ad Mon Sep 17 00:00:00 2001 From: Roman Davydov <15850461+rdavydov@users.noreply.github.com> Date: Mon, 16 Oct 2023 20:46:06 +0300 Subject: [PATCH] FROM python:3.12 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index db57a54e..ab482df5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-slim-buster +FROM python:3.12 ARG BUILDX_QEMU_ENV @@ -12,7 +12,7 @@ RUN pip install --upgrade pip RUN apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --fix-missing --no-install-recommends \ - gcc-12 \ + gcc \ libffi-dev \ rustc \ zlib1g-dev \ @@ -21,7 +21,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --fix-missing --no-ins make \ automake \ ninja-build \ - g++-12 \ + g++ \ subversion \ python3-dev \ && if [ "${BUILDX_QEMU_ENV}" = "true" ] && [ "$(getconf LONG_BIT)" = "32" ]; then \