forked from marcoraddatz/homebridge-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
executable file
·35 lines (26 loc) · 884 Bytes
/
Copy pathDockerfile
File metadata and controls
executable file
·35 lines (26 loc) · 884 Bytes
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 node:7.10
MAINTAINER PunditSharp
# Set environment variables
ENV DEBIAN_FRONTEND noninteractive
ENV TERM xterm
# Install dependencies and tools
RUN apt-get update; \
apt-get install -y apt-utils apt-transport-https; \
apt-get install -y curl wget; \
apt-get install -y libnss-mdns avahi-discover libavahi-compat-libdnssd-dev libkrb5-dev
WORKDIR /castwebapi
#RUN npm install castv2; \
# npm install castv2-client; \
# npm install debug; \
# npm install http; \
#npm install url; \
#npm install minimist; \
#npm install mdns
# Get latest script from Git
# -------------------------------------------------------------------------
#RUN git clone https://github.com/vervallsweg/cast-web-api.git
RUN git clone https://github.com/germasch/smartthings-cast.git
ADD image/run.sh /root/run.sh
# Run container
EXPOSE 8080
CMD ["/root/run.sh"]