chore(deps): update python docker tag to v3.12

This commit is contained in:
renovate[bot]
2024-03-08 17:10:54 +00:00
committed by Markus Küffner
parent 3d6d6e986d
commit dd58f4d4e9
3 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
## Get Klipper Source and Build venv
##
FROM python:3.11-bookworm as build
FROM python:3.12-bookworm as build
ARG REPO=https://github.com/Klipper3d/klipper
ARG VERSION=master
@@ -22,7 +22,7 @@ RUN python -m venv venv \
## Klippy Runtime Image
##
FROM python:3.11-slim-bookworm as run
FROM python:3.12-slim-bookworm as run
WORKDIR /opt
RUN groupadd klipper --gid 1000 \

View File

@@ -1,4 +1,4 @@
FROM python:3.11-bookworm as build
FROM python:3.12-bookworm as build
ARG REPO=https://github.com/KlipperScreen/KlipperScreen
ARG VERSION=master
@@ -18,7 +18,7 @@ RUN git clone ${REPO} klipperscreen \
RUN python -m venv venv \
&& venv/bin/pip install -r klipperscreen/scripts/KlipperScreen-requirements.txt
FROM python:3.11-slim-bookworm as run
FROM python:3.12-slim-bookworm as run
RUN apt update \
&& apt install -y \

View File

@@ -1,5 +1,5 @@
## Get Code and Build venv
FROM python:3.11-bookworm as build
FROM python:3.12-bookworm as build
ARG REPO=https://github.com/Arksine/moonraker
ARG VERSION=master
@@ -15,7 +15,7 @@ RUN python -m venv venv \
&& venv/bin/pip install -r moonraker/scripts/moonraker-requirements.txt
## Runtime Image
FROM python:3.11-slim-bookworm as run
FROM python:3.12-slim-bookworm as run
RUN apt update \
&& apt install -y \