30 lines
1.3 KiB
Docker
30 lines
1.3 KiB
Docker
FROM homeassistant/home-assistant:2022.8
|
|
|
|
#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 && \
|
|
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/alpine-3.10/amd64/ --prefer-binary
|
|
|
|
# Install spotcast
|
|
RUN cd /tmp && \
|
|
wget -q -O spotcast.tar.gz https://github.com/fondberg/spotcast/archive/refs/tags/v3.7.0.tar.gz && \
|
|
tar xzf spotcast.tar.gz && \
|
|
mv spotcast-*/custom_components/spotcast /usr/local/config/custom_components/ && \
|
|
rm -rf /tmp/*
|
|
|
|
# Install dualmodegeneric thermostat
|
|
RUN cd /tmp && \
|
|
wget -q https://github.com/zacs/ha-dualmodegeneric/archive/refs/heads/master.zip && \
|
|
unzip master.zip && \
|
|
mv ha-dualmodegeneric-master/custom_components/* /usr/local/config/custom_components/ && \
|
|
rm -rf /tmp/*
|
|
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
|
|
ENV PYTHONUSERBASE /config/deps
|
|
ENTRYPOINT ["/entrypoint.sh"]
|