Signed-off-by: Jess Frazelle <me@jessfraz.com>
This commit is contained in:
Jess Frazelle 2016-09-08 11:21:26 -07:00
parent b2bb390524
commit 44a527332a
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

17
node-sonos/Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM mhart/alpine-node:5
RUN apk add --no-cache \
build-base \
ca-certificates \
git \
python
RUN git clone --depth 1 https://github.com/jishi/node-sonos-http-api.git /opt/app
# install dependencies
WORKDIR /opt/app
RUN npm install --production
EXPOSE 3500/tcp 5005/tcp
CMD ["npm", "start"]