dockerfiles/node-sonos/Dockerfile
Jess Frazelle 3e0fc7968f
better git clones
Signed-off-by: Jess Frazelle <acidburn@google.com>
2016-12-27 17:04:58 -08:00

18 lines
292 B
Docker

FROM node:alpine
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"]