Skip to content

Commit 338e966

Browse files
committed
remove aarch64
1 parent f0ef0f2 commit 338e966

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/builder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
matrix:
6969
addon: ${{ fromJson(needs.init.outputs.changed_addons) }}
70-
arch: ["aarch64", "amd64"]
70+
arch: ["amd64"]
7171

7272
steps:
7373
- name: Check out repository

energy-assistant/Dockerfile

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@ COPY --from=ghcr.io/astral-sh/uv /uv /uvx /bin/
66

77
# Execute during the build of the image
88
ARG TEMPIO_VERSION BUILD_ARCH EASS_VERSION
9-
10-
RUN \
11-
curl -sSLf -o /usr/bin/tempio \
12-
"https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"
13-
149
ENV PATH=/root/.local/bin:$PATH
10+
ENV APP_CONFIG_FILE=local
11+
1512

1613
RUN \
17-
uv tool install --index-strategy unsafe-best-match energy-assistant==${EASS_VERSION} \
14+
curl -sSLf -o /usr/bin/tempio \
15+
"https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}" \
16+
&& uv tool install --index-strategy unsafe-best-match energy-assistant==${EASS_VERSION} \
1817
&& mkdir /data
1918

2019
# Copy root filesystem
@@ -23,7 +22,6 @@ COPY rootfs /
2322
VOLUME [ "/data" ]
2423

2524
EXPOSE 5000
26-
ENV APP_CONFIG_FILE=local
2725

2826
LABEL \
2927
org.opencontainers.image.title="Energy Assistant" \

0 commit comments

Comments
 (0)