diff --git a/3dprinter-octoprint/CHANGELOG.md b/3dprinter-octoprint/CHANGELOG.md index eccf760..1040746 100644 --- a/3dprinter-octoprint/CHANGELOG.md +++ b/3dprinter-octoprint/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2025.11.0 + * Update base image to debian trixie + * Update default OctoPrint version to 1.11.4 + ## 2024.11.0 * Remove AppArmor to make it run on HA Supervised * Update default OctoPrint version to 1.10.3 diff --git a/3dprinter-octoprint/Dockerfile b/3dprinter-octoprint/Dockerfile index 775f30b..441dc2a 100644 --- a/3dprinter-octoprint/Dockerfile +++ b/3dprinter-octoprint/Dockerfile @@ -1,6 +1,6 @@ -ARG BUILD_FROM="ghcr.io/home-assistant/amd64-base-debian:bullseye" +ARG BUILD_FROM="ghcr.io/home-assistant/amd64-base-debian:trixie" FROM ${BUILD_FROM} -ARG OCTOPRINT_VERSION="1.9.3" +ARG OCTOPRINT_VERSION="1.11.4" # Setup path for persistent install of Python packages ENV PYTHONPATH=/data/python/octoprint diff --git a/3dprinter-octoprint/build.yaml b/3dprinter-octoprint/build.yaml index 7ebc4c1..d8af18b 100644 --- a/3dprinter-octoprint/build.yaml +++ b/3dprinter-octoprint/build.yaml @@ -1,11 +1,11 @@ build_from: - aarch64: ghcr.io/home-assistant/aarch64-base-debian:bullseye - amd64: ghcr.io/home-assistant/amd64-base-debian:bullseye - armhf: ghcr.io/home-assistant/armhf-base-debian:bullseye - armv7: ghcr.io/home-assistant/armv7-base-debian:bullseye + aarch64: ghcr.io/home-assistant/aarch64-base-debian:trixie + amd64: ghcr.io/home-assistant/amd64-base-debian:trixie + armhf: ghcr.io/home-assistant/armhf-base-debian:trixie + armv7: ghcr.io/home-assistant/armv7-base-debian:trixie labels: org.opencontainers.image.title: "Home Assistant Add-on: 3DPrinter-OctoPrint" org.opencontainers.image.description: "3DPrinter-OctoPrint addon for Home-Assistant." org.opencontainers.image.source: "https://github.com/fredrikbaberg/ha-3dprinter-addons" args: - OCTOPRINT_VERSION: "1.10.3" + OCTOPRINT_VERSION: "1.11.4"