-
Notifications
You must be signed in to change notification settings - Fork 116
/
Dockerfile.common
70 lines (46 loc) · 1.74 KB
/
Dockerfile.common
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#FROM debian:jessie
#FROM resin/rpi-raspbian:jessie
MAINTAINER Patrick Busch <[email protected]>
RUN apt-get update
##################################################
# Set environment variables #
##################################################
# Ensure UTF-8
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ENV DEBIAN_FRONTEND noninteractive
ENV TERM xterm
##################################################
# Add app user #
##################################################
#RUN useradd --create-home --home-dir /home/app --shell /bin/bash app
##################################################
# Install tools #
##################################################
RUN apt-get install -y curl wget git apt-transport-https python build-essential make g++ libavahi-compat-libdnssd-dev libkrb5-dev vim net-tools
RUN alias ll='ls -alG'
#####SPECIFIC#####
##################################################
# Install homebridge #
##################################################
#ADD homebridge-src /home/app/homebridge
#ADD config.json /home/app/homebridge/config.json
#RUN chown -R app:app /home/app/homebridge
#WORKDIR /home/app/homebridge
#USER app
#RUN npm install
RUN npm install -g homebridge
RUN npm install -g homebridge-openhab
##################################################
# Start #
##################################################
USER root
#WORKDIR /home/app/homebridge
RUN mkdir -p /var/run/dbus
#VOLUME /var/run/dbus
EXPOSE 5353 51826
#CMD ["npm", "run", "start"]
ADD run.sh /root/run.sh
RUN mkdir /root/.homebridge
ADD config.json /root/.homebridge/config.json
CMD ["/root/run.sh"]