Files
hass/Dockerfile
Filip Pytloun 40ad85e762
All checks were successful
build / build-and-publish (push) Successful in 3m44s
chore(docker): bump base image and remove sed workaround
- Update FROM docker.io/homeassistant/home-assistant:2025.11.2 to 2025.12.4
- Remove temporary sed patch that modified scripts/check_config.py (no longer needed)
2025-12-28 11:37:29 +01:00

17 lines
760 B
Docker

FROM docker.io/homeassistant/home-assistant:2025.12.4
#COPY src/ /usr/src/homeassistant/homeassistant/
# Install HACS
RUN mkdir -p /usr/local/config/custom_components && \
touch /usr/local/config/home-assistant.log && \
cd /usr/local/config && \
hass --version > .HA_VERSION && \
wget -q -O - https://install.hacs.xyz | bash - && \
cat /usr/local/config/custom_components/hacs/manifest.json | jq -r .requirements[] | xargs /usr/local/bin/python3 -m pip install --quiet --no-cache-dir --upgrade --constraint /usr/src/homeassistant/homeassistant/package_constraints.txt --find-links https://wheels.home-assistant.io/musllinux/ --prefer-binary
ADD entrypoint.sh /entrypoint.sh
ENV PYTHONUSERBASE /config/deps
ENTRYPOINT ["/entrypoint.sh"]