meshviewer-docker/Dockerfile

11 lines
231 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 07:24:54 +00:00
RUN git clone https://github.com/ffrgb/meshviewer.git /opt/meshviewer/
2018-04-06 19:40:51 +00:00
WORKDIR /opt/meshviewer
RUN npm install gulp -D
2018-04-08 07:51:07 +00:00
RUN yarn
RUN yarn global add gulp-cli
RUN gulp
2018-04-01 15:11:04 +00:00
2018-04-08 07:51:07 +00:00
VOLUME /opt/meshviewer/data
ENTRYPOINT ["top"]