1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00
dockerfiles/hass/arm/Dockerfile

24 lines
612 B
Docker
Raw Normal View History

2016-10-31 11:28:34 +08:00
#
# Dockerfile for hass-arm (Home Assistant)
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN set -xe \
2016-10-31 20:30:17 +08:00
&& apk add --no-cache build-base \
linux-headers \
python3 \
python3-dev \
2017-03-11 21:30:03 +08:00
&& pip3 install --no-cache-dir homeassistant==0.39.3 \
netdisco==0.9.1 \
pychromecast==0.8.0 \
2016-10-31 20:30:17 +08:00
&& apk del build-base \
linux-headers \
python3-dev
2016-10-31 11:28:34 +08:00
VOLUME /etc/hass
EXPOSE 8123
ENTRYPOINT ["hass", "--config", "/etc/hass"]