Compare commits

..

5 Commits

Author SHA1 Message Date
Stefan Allius
e51a2a14ed bump version 2025-04-13 20:51:00 +02:00
Stefan Allius
265c05cc32 fix rel build run 2025-04-13 19:53:13 +02:00
Stefan Allius
54876c6bdf retrigger sonar qube test run 2025-04-13 19:16:18 +02:00
Stefan Allius
63de5066e3 fix link
(cherry picked from commit 3d422f9249)
2025-04-13 19:08:23 +02:00
Stefan Allius
b89bef70ed update compose help link
(cherry picked from commit 6d4ff0d508)
2025-04-13 19:05:49 +02:00
6 changed files with 6 additions and 7 deletions

View File

@@ -1 +1 @@
3.13.3 3.13.2

View File

@@ -1 +1 @@
0.14.0 0.13.0

View File

@@ -1,4 +1,4 @@
aiomqtt==2.3.2 aiomqtt==2.3.1
schema==0.7.7 schema==0.7.7
aiocron==2.1 aiocron==2.1
aiohttp==3.11.16 aiohttp==3.11.16

View File

@@ -32,7 +32,7 @@ rel : STAGE=rel
export BUILD_DATE := ${shell date -Iminutes} export BUILD_DATE := ${shell date -Iminutes}
debug dev : BUILD_ID := ${shell date +'%y%m%d%H%M'} BUILD_ID := ${shell date +'%y%m%d%H%M'}
VERSION := $(shell cat $(SRC)/.version) VERSION := $(shell cat $(SRC)/.version)
export MAJOR := $(shell echo $(VERSION) | cut -f1 -d.) export MAJOR := $(shell echo $(VERSION) | cut -f1 -d.)

View File

@@ -90,7 +90,6 @@ target "preview" {
target "rc" { target "rc" {
inherits = ["_common", "_prod"] inherits = ["_common", "_prod"]
tags = ["${IMAGE}:rc", "${IMAGE}:${VERSION}"] tags = ["${IMAGE}:rc", "${IMAGE}:${VERSION}"]
no-cache = true
} }
target "rel" { target "rel" {

View File

@@ -13,12 +13,12 @@
# 1 Build Base Image # # 1 Build Base Image #
###################### ######################
ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.4" ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.3"
# hadolint ignore=DL3006 # hadolint ignore=DL3006
FROM $BUILD_FROM AS base FROM $BUILD_FROM AS base
# Installiere Python, pip und virtuelle Umgebungstools # Installiere Python, pip und virtuelle Umgebungstools
RUN apk add --no-cache python3=3.12.10-r0 py3-pip=24.3.1-r0 && \ RUN apk add --no-cache python3=3.12.9-r0 py3-pip=24.3.1-r0 && \
python -m venv /opt/venv && \ python -m venv /opt/venv && \
. /opt/venv/bin/activate . /opt/venv/bin/activate