apps.Dockerfile 398 B

1234567891011121314
  1. FROM node:12 as builder
  2. WORKDIR /joystream
  3. COPY . /joystream
  4. # Do not set NODE_ENV=production until after running yarn install
  5. # to ensure dev dependencies are installed.
  6. RUN yarn install --frozen-lockfile
  7. # Uncomment query-node build when mappings are fixed
  8. # RUN yarn workspace query-node-root build
  9. RUN yarn workspace pioneer build
  10. RUN yarn workspace storage-node build
  11. ENTRYPOINT [ "yarn" ]