Skip to content

Commit

Permalink
Use fix uv version
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhaus authored Sep 3, 2024
1 parent b6572ce commit 240056b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion script/hassfest/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
COPY . /usr/src/homeassistant
# Uv is only needed during build
RUN --mount=from=ghcr.io/astral-sh/uv,source=/uv,target=/bin/uv \
RUN --mount=from=ghcr.io/astral-sh/uv:{uv},source=/uv,target=/bin/uv \
# Required for PyTurboJPEG
apk add --no-cache libturbojpeg \
&& uv pip install \
Expand Down
4 changes: 2 additions & 2 deletions script/hassfest/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Automatically generated by hassfest.
#
# To update, run python3 -m script.hassfest -p docker
FROM python:alpine3.20
FROM python:alpine

ENV \
UV_SYSTEM_PYTHON=true \
Expand All @@ -14,7 +14,7 @@ WORKDIR "/github/workspace"
COPY . /usr/src/homeassistant

# Uv is only needed during build
RUN --mount=from=ghcr.io/astral-sh/uv,source=/uv,target=/bin/uv \
RUN --mount=from=ghcr.io/astral-sh/uv:0.2.27,source=/uv,target=/bin/uv \
# Required for PyTurboJPEG
apk add --no-cache libturbojpeg \
&& uv pip install \
Expand Down

0 comments on commit 240056b

Please sign in to comment.