nuclear: disable type checking for builds

This commit is contained in:
Paul Makles 2022-09-19 16:13:09 +01:00
parent 702bdcc2e8
commit 48b8023f86

View file

@ -7,7 +7,7 @@ COPY .env.build .env
RUN npm install --global pnpm RUN npm install --global pnpm
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile
RUN pnpm build:deps RUN pnpm build:deps
RUN pnpm typecheck # RUN pnpm typecheck
RUN NODE_OPTIONS='--max-old-space-size=4096' pnpm build RUN NODE_OPTIONS='--max-old-space-size=4096' pnpm build
RUN find . -name "node_modules" -type d -prune RUN find . -name "node_modules" -type d -prune
RUN pnpm install --prod RUN pnpm install --prod