forked from patrickbusch/homebridge-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
47 lines (36 loc) · 1.64 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
FROM nodesource/jessie:5.8.0
MAINTAINER Christian Brandlehner <christian@brandlehner.at>
##################################################
# Set environment variables #
##################################################
ENV DEBIAN_FRONTEND noninteractive
ENV TERM xterm
##################################################
# Install tools #
##################################################
RUN apt-get update
RUN apt-get install -y apt-utils
RUN apt-get install -y apt-transport-https
RUN apt-get install -y locales
RUN apt-get install -y curl wget git python build-essential make g++ libavahi-compat-libdnssd-dev libkrb5-dev vim net-tools nano
RUN alias ll='ls -alG'
##################################################
# Install homebridge #
##################################################
RUN npm install -g homebridge --unsafe-perm
# depending on your config.json you have to add your modules here!
RUN npm install -g homebridge-philipshue --unsafe-perm
RUN npm install -g homebridge-ninjablock-temperature --unsafe-perm
RUN npm install -g homebridge-ninjablock-humidity --unsafe-perm
RUN npm install -g homebridge-ninjablock-alarmstatedevice --unsafe-perm
RUN npm install -g homebridge-luxtronik2 --unsafe-perm
#RUN npm install -g homebridge-mqttswitch --unsafe-perm
#RUN npm install -g homebridge-edomoticz --unsafe-perm
##################################################
# Start #
##################################################
USER root
RUN mkdir -p /var/run/dbus
ADD image/run.sh /root/run.sh
EXPOSE 5353 51826
CMD ["/root/run.sh"]