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

44 lines
1013 B
Docker
Raw Normal View History

2017-04-16 14:19:33 +02:00
#
# Dockerfile for hass-arm (Home Assistant)
#
2019-10-20 05:31:17 +02:00
FROM balenalib/rpi-raspbian:buster
2017-04-16 14:19:33 +02:00
MAINTAINER EasyPi Software Foundation
2019-11-23 02:31:55 +02:00
ENV HASS_VERSION=0.102.1
2019-10-20 05:31:17 +02:00
ENV HASS_CLI_VERSION=3.1.0
2017-04-16 14:19:33 +02:00
RUN set -xe \
&& apt-get update \
2019-10-20 05:31:17 +02:00
&& apt-get install -y \
build-essential \
bluez \
curl \
libbluetooth3 \
libbluetooth-dev \
libboost-python-dev \
libboost-thread-dev \
libglib2.0 \
libglib2.0-dev \
pkg-config \
python-dev \
python3-dev \
2017-04-16 14:19:33 +02:00
&& curl https://bootstrap.pypa.io/get-pip.py | python3 \
2019-10-20 05:31:17 +02:00
&& pip3 install --no-cache-dir \
gattlib \
homeassistant \
pybluez \
&& setcap 'cap_net_raw,cap_net_admin+eip' /usr/bin/python3.7 \
&& apt-get remove -y \
curl \
libbluetooth-dev \
libboost-python-dev \
libboost-thread-dev \
libglib2.0-dev \
pkg-config \
python-dev
2017-04-16 14:19:33 +02:00
VOLUME /etc/hass
EXPOSE 8123
ENTRYPOINT ["hass", "--config", "/etc/hass"]