meshviewer-docker/Dockerfile

12 lines
279 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 09:08:04 +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
#RUN chmod +x /start.sh
2018-04-08 07:51:07 +00:00
VOLUME /opt/meshviewer/data
2018-04-08 09:08:04 +00:00
#CMD ["/start.sh"]