forked from patrickbusch/homebridge-docker
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Dockerfile
35 lines (25 loc) · 757 Bytes
/
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
FROM alpine:3.7
##################################################
# Install tools #
##################################################
RUN apk update && apk add \
nodejs \
yarn \
git \
avahi-dev \
make \
g++ \
&& rm -rf /var/cache/apk/*
##################################################
# Install homebridge #
##################################################
RUN yarn global add homebridge
##################################################
# Start #
##################################################
USER root
RUN mkdir -p /var/run/dbus
EXPOSE 5353 51826
ADD run.sh /root/run.sh
VOLUME ["/root/.homebridge"]
CMD ["/root/run.sh"]