home-assistant (2025.2.5)
Installation
docker pull code.252.no/pub/home-assistant:2025.2.5sha256:e66140f47099c190c939e3fb594820177ccfd7ffa982ffc7f03744a63685d57bImage layers
| ADD alpine-minirootfs-3.21.2-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit |
| ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305 |
| ENV PYTHON_VERSION=3.13.1 |
| ENV PYTHON_SHA256=9cf9427bee9e2242e3877dd0f6b641c1853ca461f39d6503ce260a59c80bf0d9 |
| RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-option-checking=fatal --enable-shared --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; test "$gnuArch" != 'i686-linux-gnu' && EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit |
| RUN /bin/sh -c set -eux; for src in idle3 pip3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit |
| CMD ["python3"] |
| WORKDIR /app |
| RUN apk add --no-cache bash binutils bluez bluez-deprecated bluez-libs ca-certificates tini coreutils cups-libs curl eudev-libs ffmpeg git iputils jo jq libcap libjpeg-turbo-dev libpcap-dev libstdc++ libxslt mariadb-connector-c mariadb-connector-c-dev nano openssh-client openssl postgresql-libs socat tiff trurl tzdata unzip && apk add --no-cache --virtual=.build-deps autoconf build-base cargo cmake cups-dev eudev-dev ffmpeg-dev glib-dev jpeg-dev libffi-dev libxml2-dev libxslt-dev postgresql-dev unixodbc-dev |
| RUN pip install uv |
| RUN uv pip install pymiele==0.2.0 flatdict==4.0.1 pyeasee==0.8.11 pyelectroluxgroup==0.2.1 homeassistant-cli |
| RUN curl -fsSL "https://github.com/home-assistant/core/archive/${HASS_VERSION}.tar.gz" | tar xzf - -C /tmp --strip-components=1 |
| RUN HOME_ASSISTANT_BASE=$(curl -fsSL "https://raw.githubusercontent.com/home-assistant/core/${HASS_VERSION}/build.yaml" | grep "amd64: " | cut -d ":" -f3) && uv pip install --system --only-binary=:all: --find-links "${HOMEASSISTANT_WHEELS}" --requirement "https://raw.githubusercontent.com/home-assistant/docker/${HOME_ASSISTANT_BASE}/requirements.txt" && uv pip install --system --only-binary=:all: --find-links "${HOMEASSISTANT_WHEELS}" --requirement /tmp/requirements_all.txt && uv pip install --system --only-binary=:all: --find-links "${HOMEASSISTANT_WHEELS}" homeassistant=="${HASS_VERSION}" |
| RUN curl -L https://github.com/AlexxIT/go2rtc/releases/download/v1.9.8/go2rtc_linux_amd64 --output /bin/go2rtc && chmod +x /bin/go2rtc && mkdir -p /config && chown nobody:nogroup -R /config && apk del --purge .build-deps && rm -rf /root/.cache /root/.cargo /tmp/* |
| COPY ./entrypoint.sh /entrypoint.sh |
| RUN chmod +x /entrypoint.sh && chown nobody:nogroup /entrypoint.sh && chmod +x /sbin/tini |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.source | https://github.com/home-assistant/core |
Details
2025-03-02 12:42:01 +00:00
Versions (9)
View all
Container
319
OCI / Docker
linux/amd64
1.8 GiB