Fix monorepo build

This commit is contained in:
schmelczerandras 2020-10-17 17:24:24 +02:00
parent 2d67b7d939
commit fd80a299b6
14 changed files with 99 additions and 83 deletions

View file

@ -1,7 +1,8 @@
FROM node:14.13.0-alpine3.10 as build
COPY . .
RUN npm install && npm run initialize && npm run build
RUN npm i -g concurrently
RUN yarn && yarn run build
FROM node:14.13.0-alpine3.10