Update AddOn base docker image to version 17.1.3 and python3 to 3.12.9-r0

This commit is contained in:
Stefan Allius
2025-02-11 20:45:01 +01:00
parent 4df36e2672
commit 5f0a35d55b
2 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [unreleased] ## [unreleased]
- revert AddOn base docker image to version 17.1.0 - Update AddOn base docker image to version 17.1.3 and python3 to 3.12.9-r0
- add initial DCU support - add initial DCU support
- update AddOn base docker image to version 17.1.2 - update AddOn base docker image to version 17.1.2
- update aiohttp to version 3.11.12 - update aiohttp to version 3.11.12

View File

@@ -13,12 +13,12 @@
# 1 Build Base Image # # 1 Build Base Image #
###################### ######################
ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.1.0" ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.1.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.8-r1 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