fix Add-on build errors

- bump python to version 3.12.9-r0
- fix workspace path for VSCode
This commit is contained in:
Stefan Allius
2025-03-23 23:38:12 +01:00
committed by GitHub
parent 5d1ee60baf
commit 45abc69ffb
3 changed files with 5 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.1"
FROM $BUILD_FROM AS base
# 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 && \
. /opt/venv/bin/activate