1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:14:57 +02:00
dockerfiles/hass/Dockerfile

21 lines
455 B
Docker
Raw Normal View History

2016-10-31 05:28:34 +02:00
#
# Dockerfile for hass (Home Assistant)
#
FROM alpine
MAINTAINER EasyPi Software Foundation
RUN set -xe \
2017-04-08 07:29:38 +02:00
&& apk update \
2017-04-16 06:40:40 +02:00
&& apk add --no-cache ca-certificates \
build-base \
2016-10-31 14:30:17 +02:00
linux-headers \
python3 \
python3-dev \
2017-04-08 07:29:38 +02:00
&& pip3 install --no-cache-dir homeassistant
2016-10-31 05:28:34 +02:00
VOLUME /etc/hass
EXPOSE 8123
ENTRYPOINT ["hass", "--config", "/etc/hass"]