-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
34 lines (25 loc) · 896 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
FROM phusion/baseimage:0.9.15
#########################################
## ENVIRONMENTAL CONFIG ##
#########################################
# Set correct environment variables
ENV DEBIAN_FRONTEND noninteractive
ENV HOME /root
ENV LC_ALL C.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV PATH $PATH
#########################################
## RUN INSTALL SCRIPT ##
#########################################
ADD install.sh /tmp/
RUN chmod +x /tmp/install.sh && /tmp/install.sh && rm /tmp/install.sh
##################################################
# Start #
##################################################
#USER root
EXPOSE 5353 51826
ADD install_plugins.sh /root/install_plugins.sh
ADD run.sh /root/run.sh
VOLUME ["/root/.homebridge"]
CMD ["/root/run.sh"]