1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-29 18:21:24 +00:00
dockerfiles/hass/Dockerfile

24 lines
597 B
Docker
Raw Normal View History

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