apps.Dockerfile 344 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. RUN yarn workspace pioneer build
  8. RUN yarn workspace storage-node build
  9. RUN yarn workspace query-node-root build
  10. ENTRYPOINT [ "yarn" ]