Files
hass/Dockerfile
Filip Pytloun 8130785060
All checks were successful
publish / build-and-publish (push) Successful in 3m1s
publish / promote-and-deploy (push) Has been skipped
publish / deploy (push) Has been skipped
chore(ci): enable verbose output for Pushover notifications and specify full Docker image path
- Change curl commands in GitHub Actions workflows to use verbose mode (-v) instead of silent mode (-s) for failure notifications
- Update Dockerfile to use full Docker image path with docker.io registry prefix
2025-10-21 16:06:04 +02:00

17 lines
759 B
Docker

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