From 213732a8875d69ef910805553255dfd7e6e3ba7f Mon Sep 17 00:00:00 2001 From: Dieter Schmidt Date: Wed, 18 Jan 2023 13:56:42 +0100 Subject: [PATCH] update to python 3.11 --- klipper/Dockerfile | 6 +++--- klipper/builder.Dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/klipper/Dockerfile b/klipper/Dockerfile index fa602f9..5a418e9 100644 --- a/klipper/Dockerfile +++ b/klipper/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-bullseye as builder +FROM python:3.11-bullseye as builder ARG DEBIAN_FRONTEND=noninteractive ARG KLIPPER_BRANCH="master" @@ -68,7 +68,7 @@ RUN ${MOONRAKER_VENV_DIR}/bin/pip install wheel gpiod && \ ${MOONRAKER_VENV_DIR}/bin/pip install --no-cache-dir -f ${WHEELS} -r scripts/moonraker-requirements.txt RUN ${MOONRAKER_VENV_DIR}/bin/python -m compileall moonraker -FROM python:3.10-slim-bullseye as image +FROM python:3.11-slim-bullseye as image ARG DEBIAN_FRONTEND=noninteractive @@ -125,7 +125,7 @@ COPY --chown=${USER}:${USER} --from=builder ${WHEELS} ${WHEELS} RUN pip install --no-index -f ${WHEELS} supervisord-dependent-startup gpiod numpy matplotlib && \ mkdir -p /usr/lib/python3 && \ - ln -s /usr/local/lib/python3.10/site-packages /usr/lib/python3/dist-packages && \ + ln -s /usr/local/lib/python3.11/site-packages /usr/lib/python3/dist-packages && \ rm -Rf ${WHEELS} USER ${USER} diff --git a/klipper/builder.Dockerfile b/klipper/builder.Dockerfile index 30b7d08..9771a9b 100644 --- a/klipper/builder.Dockerfile +++ b/klipper/builder.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-bullseye +FROM python:3.11-bullseye ARG DEBIAN_FRONTEND=noninteractive ARG KLIPPER_BRANCH="master" @@ -28,7 +28,7 @@ RUN apt-get update && \ RUN sed -i -e 's/# en_GB.UTF-8 UTF-8/en_GB.UTF-8 UTF-8/' /etc/locale.gen RUN locale-gen -RUN python -m pip install pip -U +RUN python -m pip install -U pip wheel ENV LC_ALL en_GB.UTF-8 ENV LANG en_GB.UTF-8