Files
hass/Dockerfile
Renovate Bot 6163129b15
All checks were successful
continuous-integration/drone/push Build is passing
Update homeassistant/home-assistant Docker tag to v2024.7.4
2024-07-31 09:10:48 +00:00

17 lines
746 B
Docker

FROM homeassistant/home-assistant:2024.7.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 && \
echo 2024.3 > .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"]