Compare commits
15 Commits
update-rel
...
start-vers
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f8ac43f183 | ||
|
|
279a6c030c | ||
|
|
586a5d5c3d | ||
|
|
5568a017ec | ||
|
|
4a70f366f1 | ||
|
|
00657c31f3 | ||
|
|
22ebad2edb | ||
|
|
aac89065fd | ||
|
|
e3c2672ea9 | ||
|
|
fe250d478a | ||
|
|
86d9fc8c8f | ||
|
|
83a723c959 | ||
|
|
9031b5c793 | ||
|
|
abe6bfb013 | ||
|
|
31f4f05bed |
@@ -1 +1 @@
|
|||||||
3.13.2
|
3.13.3
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
0.13.0
|
0.14.0
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
aiomqtt==2.3.1
|
aiomqtt==2.3.2
|
||||||
schema==0.7.7
|
schema==0.7.7
|
||||||
aiocron==2.1
|
aiocron==2.1
|
||||||
aiohttp==3.11.16
|
aiohttp==3.11.16
|
||||||
@@ -32,7 +32,7 @@ rel : STAGE=rel
|
|||||||
|
|
||||||
|
|
||||||
export BUILD_DATE := ${shell date -Iminutes}
|
export BUILD_DATE := ${shell date -Iminutes}
|
||||||
BUILD_ID := ${shell date +'%y%m%d%H%M'}
|
debug dev : 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.)
|
||||||
|
|
||||||
|
|||||||
@@ -90,6 +90,7 @@ 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" {
|
||||||
|
|||||||
@@ -13,12 +13,12 @@
|
|||||||
# 1 Build Base Image #
|
# 1 Build Base Image #
|
||||||
######################
|
######################
|
||||||
|
|
||||||
ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.3"
|
ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.4"
|
||||||
# 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.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 && \
|
python -m venv /opt/venv && \
|
||||||
. /opt/venv/bin/activate
|
. /opt/venv/bin/activate
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user