Update script/hassfest/docker.py

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Robert Resch
2026-04-15 00:17:57 +02:00
committed by GitHub
parent bc64666b96
commit dd8a6b4934

View File

@@ -41,13 +41,11 @@ WORKDIR /usr/src
# Add go2rtc binary
COPY --from=ghcr.io/alexxit/go2rtc@sha256:{go2rtc} /usr/local/bin/go2rtc /bin/go2rtc
# Add uv binary
COPY --from=ghcr.io/astral-sh/uv:{uv} /uv /bin/uv
## Setup Home Assistant Core dependencies
COPY requirements.txt homeassistant/
COPY homeassistant/package_constraints.txt homeassistant/homeassistant/
RUN \
RUN --mount=from=ghcr.io/astral-sh/uv:{uv},source=/uv,target=/bin/uv \
# Verify go2rtc can be executed
go2rtc --version \
&& uv pip install \