1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-04-11 11:31:53 +02:00
dockerfiles/hass/Dockerfile
2017-03-25 12:38:14 +08:00

24 lines
596 B
Docker

#
# Dockerfile for hass (Home Assistant)
#
FROM alpine
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.40.2 \
netdisco==0.9.2\
pychromecast==0.8.1 \
&& apk del build-base \
linux-headers \
python3-dev
VOLUME /etc/hass
EXPOSE 8123
ENTRYPOINT ["hass", "--config", "/etc/hass"]