mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-10 04:19:24 +02:00
16 lines
295 B
Docker
16 lines
295 B
Docker
|
#
|
||
|
# 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"]
|