mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
23 lines
555 B
Docker
23 lines
555 B
Docker
#
|
|
# Dockerfile for hass-arm (Home Assistant)
|
|
#
|
|
|
|
FROM easypi/alpine-arm
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache build-base \
|
|
linux-headers \
|
|
python3 \
|
|
python3-dev \
|
|
&& pip3 install --no-cache-dir homeassistant==0.33.4 \
|
|
netdisco==0.7.7 \
|
|
&& apk del build-base \
|
|
linux-headers \
|
|
python3-dev
|
|
|
|
VOLUME /etc/hass
|
|
EXPOSE 8123
|
|
|
|
ENTRYPOINT ["hass", "--config", "/etc/hass"]
|