Skip to content

Commit 086cc53

Browse files
author
Sergey
committed
fix: revert runtime Python to 3.13 in all Dockerfiles
Renovate PR #598 bumped the runtime image to Python 3.14 but left the builder stage on Python 3.13. This causes ModuleNotFoundError because the venv site-packages are under python3.13/ while the 3.14 runtime looks under python3.14/. Revert all three Dockerfiles to matching 3.13.
1 parent 6e1fc10 commit 086cc53

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
2323
uv sync --locked --no-dev
2424

2525
# --- Runtime stage: clean image without uv ---
26-
FROM python:3.14-slim-bookworm@sha256:f0540d0436a220db0a576ccfe75631ab072391e43a24b88972ef9833f699095f
26+
FROM python:3.13-slim-bookworm@sha256:8092ae2ef67061f9db412458dbdce44dbf16748fb3cae5cdbd020f467a9712d0
2727

2828
LABEL org.opencontainers.image.title="Home Assistant MCP Server" \
2929
org.opencontainers.image.description="AI assistant integration for Home Assistant via Model Context Protocol" \

homeassistant-addon-dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
2222
uv sync --locked --no-dev --no-editable
2323

2424
# --- Runtime stage: clean image without uv ---
25-
FROM python:3.14-slim-bookworm@sha256:f0540d0436a220db0a576ccfe75631ab072391e43a24b88972ef9833f699095f
25+
FROM python:3.13-slim-bookworm@sha256:8092ae2ef67061f9db412458dbdce44dbf16748fb3cae5cdbd020f467a9712d0
2626

2727
WORKDIR /app
2828

0 commit comments

Comments
 (0)