Skip to content

Commit

Permalink
add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghadjeres committed Jan 31, 2019
1 parent 0be307a commit 46b30e7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Dockerfile
@@ -0,0 +1,21 @@
FROM node:11.8.0-stretch

RUN git clone https://github.com/SonyCSLParis/opensheetmusicdisplay.git
WORKDIR /opensheetmusicdisplay
RUN yarn install && yarn link

WORKDIR /
RUN git clone https://github.com/SonyCSLParis/simplebar.git
WORKDIR /simplebar
RUN yarn install && yarn run build && yarn link

WORKDIR /
RUN git clone https://github.com/SonyCSLParis/NONOTO.git
WORKDIR /NONOTO
RUN yarn link opensheetmusicdisplay && yarn link simplebar
RUN yarn install && yarn build:web

EXPOSE 8080

CMD ["yarn", "serve:web"]

0 comments on commit 46b30e7

Please sign in to comment.