Skip to content

Commit

Permalink
chore(deps): update python docker tag to v3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 10, 2024
1 parent f3250a2 commit 13d9b9e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker/klipper/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Get Klipper Source and Build venv
##
FROM python:3.11-bookworm as build
FROM python:3.13-bookworm as build

RUN apt update \
&& apt install -y cmake \
Expand Down Expand Up @@ -28,7 +28,7 @@ RUN venv/bin/pip install -r klipper/scripts/klippy-requirements.txt \

## Klippy Runtime Image
##
FROM python:3.11-slim-bookworm as run
FROM python:3.13-slim-bookworm as run

WORKDIR /opt
RUN groupadd klipper --gid 1000 \
Expand Down
4 changes: 2 additions & 2 deletions docker/klipperscreen/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-bookworm as build
FROM python:3.13-bookworm as build

ARG REPO=https://github.com/KlipperScreen/KlipperScreen
ARG VERSION=master
Expand All @@ -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.12-slim-bookworm as run
FROM python:3.13-slim-bookworm as run

RUN apt update \
&& apt install -y \
Expand Down
4 changes: 2 additions & 2 deletions docker/moonraker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Get Code and Build venv
FROM python:3.12-bookworm as build
FROM python:3.13-bookworm as build

WORKDIR /opt
COPY requirements-prind.txt .
Expand All @@ -19,7 +19,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.13-slim-bookworm as run

RUN apt update \
&& apt install -y \
Expand Down

0 comments on commit 13d9b9e

Please sign in to comment.