1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/hcfg/arm/Dockerfile
2017-04-20 18:38:07 +08:00

24 lines
668 B
Docker

#
# Dockerfile for hcfg-arm (Home Assistant Configurator)
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
WORKDIR /opt/hcfg
RUN set -xe \
&& apk add --no-cache curl git python3 \
&& pip3 install gitpython \
&& mkdir -p bin etc \
&& curl -sSL https://raw.githubusercontent.com/danielperna84/hass-configurator/master/configurator.py > bin/hcfg \
&& curl -sSL https://raw.githubusercontent.com/danielperna84/hass-configurator/master/settings.conf > etc/hcfg.conf \
&& sed -i '/^GIT/s/False/True/' /opt/hcfg/bin/hcfg \
&& chmod +x bin/hcfg
VOLUME /opt/hcfg
EXPOSE 3218
CMD ["/opt/hcfg/bin/hcfg", "/opt/hcfg/etc/hcfg.conf"]