Files
hass/Dockerfile
Filip Pytloun 74bd1035bd
Some checks failed
publish / promote-and-deploy (push) Has been cancelled
publish / deploy (push) Has been cancelled
publish / build-and-publish (push) Has been cancelled
chore(docker): bump Home Assistant base image to 2025.11.2
- Update Dockerfile FROM to docker.io/homeassistant/home-assistant:2025.11.2
2025-11-20 12:46:29 +01:00

17 lines
760 B
Docker

FROM docker.io/homeassistant/home-assistant:2025.11.2
#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"]