mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
add hass
This commit is contained in:
15
hass/Dockerfile
Normal file
15
hass/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
#
|
||||
# Dockerfile for hass (Home Assistant)
|
||||
#
|
||||
|
||||
FROM alpine
|
||||
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"]
|
||||
Reference in New Issue
Block a user