CyTube/Dockerfile

10 lines
107 B
Docker
Raw Normal View History

2017-06-02 06:19:15 +00:00
FROM alpine:3.6
ADD . /app
RUN cd app && sh container-install.sh
WORKDIR /app
CMD ["node", "index.js"]