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

16 lines
295 B
Docker
Raw Normal View History

2016-10-31 05:28:34 +02:00
#
# Dockerfile for hass-arm (Home Assistant)
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache python3 \
&& python3 -m pip install --no-cache-dir homeassistant
VOLUME /etc/hass
EXPOSE 8123
ENTRYPOINT ["hass", "--config", "/etc/hass"]