1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/hass/arm/Dockerfile.debian

46 lines
1.0 KiB
Docker
Raw Normal View History

2017-04-16 12:19:33 +00:00
#
# Dockerfile for hass-arm (Home Assistant)
#
2021-11-08 09:25:37 +00:00
FROM debian:bullseye
2017-04-16 12:19:33 +00:00
MAINTAINER EasyPi Software Foundation
2021-11-08 09:25:37 +00:00
ENV HASS_VERSION=2021.11.1
ENV HASS_CLI_VERSION=4.14.0
ARG HASS_CLI_ARCH=armhf
2019-10-20 03:31:17 +00:00
2017-04-16 12:19:33 +00:00
RUN set -xe \
&& apt-get update \
2019-10-20 03:31:17 +00: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 12:19:33 +00:00
&& curl https://bootstrap.pypa.io/get-pip.py | python3 \
2019-10-20 03:31:17 +00:00
&& pip3 install --no-cache-dir \
gattlib \
homeassistant \
pybluez \
2021-11-08 09:25:37 +00:00
&& setcap 'cap_net_raw,cap_net_admin+eip' /usr/bin/python3.9 \
2019-10-20 03:31:17 +00:00
&& apt-get remove -y \
curl \
libbluetooth-dev \
libboost-python-dev \
libboost-thread-dev \
libglib2.0-dev \
pkg-config \
python-dev
2017-04-16 12:19:33 +00:00
VOLUME /etc/hass
EXPOSE 8123
ENTRYPOINT ["hass", "--config", "/etc/hass"]