apps.Dockerfile 553 B

12345678910111213141516
  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. # Pioneer is failing to build only on github actions workflow runner
  8. # Error: packages/page-staking/src/index.tsx(24,21): error TS2307: Cannot find module './Targets' or its corresponding type declarations.
  9. # RUN yarn workspace pioneer build
  10. RUN yarn workspace storage-node build
  11. RUN yarn workspace query-node-root build
  12. ENTRYPOINT [ "yarn" ]