klipper: pin to python 3.12.11

This commit is contained in:
Markus Küffner
2026-02-27 20:23:19 +01:00
parent 04bd6f8b58
commit b7879dc6b0

View File

@@ -1,6 +1,6 @@
## Get Klipper Source and Build venv
##
FROM python:3.12-trixie AS build
FROM python:3.12.11-trixie AS build
RUN apt update \
&& apt install -y cmake \
@@ -29,7 +29,7 @@ RUN venv/bin/pip install -r klipper/scripts/klippy-requirements.txt \
## Klippy Runtime Image
##
FROM python:3.12-slim-trixie AS run
FROM python:3.12.11-slim-trixie AS run
WORKDIR /opt
RUN groupadd klipper --gid 1000 \