meshviewer-docker/Dockerfile

11 lines
259 B
Docker
Raw Normal View History

2018-04-06 19:40:51 +00:00
FROM node:latest
2018-04-01 13:01:54 +00:00
2018-04-08 08:49:29 +00:00
#RUN git clone https://github.com/ffrgb/meshviewer.git /opt/meshviewer/
#WORKDIR /opt/meshviewer
#RUN npm install gulp -D
#RUN yarn
#RUN yarn global add gulp-cli
#RUN gulp
COPY start.sh /start.sh
2018-04-08 07:51:07 +00:00
VOLUME /opt/meshviewer/data
2018-04-08 08:49:29 +00:00
CMD ["/start.sh"]