From e3c2672ea902be41f24a8ca3beed47f204b813d5 Mon Sep 17 00:00:00 2001 From: Stefan Allius <122395479+s-allius@users.noreply.github.com> Date: Sun, 13 Apr 2025 20:37:34 +0200 Subject: [PATCH] Fix rel build (#369) * disable cache for rc build * bump python version to 3.12.10-r0 --- ha_addons/docker-bake.hcl | 1 + ha_addons/ha_addon/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ha_addons/docker-bake.hcl b/ha_addons/docker-bake.hcl index 9c87499..32cbf6c 100644 --- a/ha_addons/docker-bake.hcl +++ b/ha_addons/docker-bake.hcl @@ -90,6 +90,7 @@ target "preview" { target "rc" { inherits = ["_common", "_prod"] tags = ["${IMAGE}:rc", "${IMAGE}:${VERSION}"] + no-cache = true } target "rel" { diff --git a/ha_addons/ha_addon/Dockerfile b/ha_addons/ha_addon/Dockerfile index 9d3ecdb..ae45569 100755 --- a/ha_addons/ha_addon/Dockerfile +++ b/ha_addons/ha_addon/Dockerfile @@ -18,7 +18,7 @@ ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.3" FROM $BUILD_FROM AS base # Installiere Python, pip und virtuelle Umgebungstools -RUN apk add --no-cache python3=3.12.9-r0 py3-pip=24.3.1-r0 && \ +RUN apk add --no-cache python3=3.12.10-r0 py3-pip=24.3.1-r0 && \ python -m venv /opt/venv && \ . /opt/venv/bin/activate