chore(deps): update debian docker tag to v13

This commit is contained in:
renovate[bot]
2025-09-14 20:52:29 +00:00
committed by GitHub
parent 64cfdfd9f0
commit 7c2e11abad
4 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
## Get Klipper Source and Build venv
##
FROM python:3.12-bookworm AS build
FROM python:3.12-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-bookworm AS run
FROM python:3.12-slim-trixie AS run
WORKDIR /opt
RUN groupadd klipper --gid 1000 \
@@ -53,7 +53,7 @@ CMD ["-I", "printer_data/run/klipper.tty", "-a", "printer_data/run/klipper.sock"
## Image for building MCU code including other tooling
##
FROM debian:bookworm AS tools
FROM debian:trixie AS tools
WORKDIR /opt
ARG DEBIAN_FRONTEND=noninteractive
@@ -87,7 +87,7 @@ RUN cd klipper \
## Runtime image for the klipper_mcu binary
##
FROM debian:bookworm-slim AS hostmcu
FROM debian:trixie-slim AS hostmcu
RUN apt update \
&& apt install -y gpiod \

View File

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

View File

@@ -1,5 +1,5 @@
## Get Code and Build venv
FROM python:3.12-bookworm AS build
FROM python:3.12-trixie AS build
WORKDIR /opt
COPY requirements-prind.txt .
@@ -20,7 +20,7 @@ RUN python -m venv venv \
&& venv/bin/pip install -r moonraker/scripts/moonraker-requirements.txt
## Runtime Image
FROM python:3.12-slim-bookworm AS run
FROM python:3.12-slim-trixie AS run
RUN apt update \
&& apt install -y \

View File

@@ -1,5 +1,5 @@
## Get Code and make
FROM debian:bookworm-slim AS build
FROM debian:trixie-slim AS build
ARG REPO=https://github.com/pikvm/ustreamer
ARG VERSION=master
@@ -28,7 +28,7 @@ RUN cd ustreamer \
&& make LDFLAGS=-latomic
## Runtime Image
FROM debian:bookworm-slim AS run
FROM debian:trixie-slim AS run
RUN apt update \
&& apt install -y \