|
@@ -2,13 +2,13 @@ FROM node:12 as builder
|
|
|
|
|
|
WORKDIR /joystream
|
|
WORKDIR /joystream
|
|
COPY . /joystream
|
|
COPY . /joystream
|
|
|
|
+RUN rm -fr /joystream/pioneer
|
|
|
|
|
|
# Do not set NODE_ENV=production until after running yarn install
|
|
# Do not set NODE_ENV=production until after running yarn install
|
|
# to ensure dev dependencies are installed.
|
|
# to ensure dev dependencies are installed.
|
|
RUN yarn --forzen-lockfile
|
|
RUN yarn --forzen-lockfile
|
|
|
|
|
|
-# Pioneer is the 'heaviest' package in terms of dependencies
|
|
|
|
-# RUN yarn workspace pioneer build
|
|
|
|
|
|
+RUN yarn workspace @joystream/types build
|
|
RUN yarn workspace query-node-root build
|
|
RUN yarn workspace query-node-root build
|
|
RUN yarn workspace storage-node build
|
|
RUN yarn workspace storage-node build
|
|
|
|
|