mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-10 10:35:27 +00:00
fix(docker): this should be calling corepack each time
This commit is contained in:
@@ -4,12 +4,11 @@ WORKDIR /usr/src/app
|
||||
COPY . .
|
||||
COPY .env.build .env
|
||||
|
||||
RUN corepack pnpm install
|
||||
RUN pnpm install --frozen-lockfile
|
||||
RUN pnpm typecheck
|
||||
RUN NODE_OPTIONS='--max-old-space-size=4096' pnpm build:all
|
||||
RUN corepack pnpm install --frozen-lockfile
|
||||
RUN corepack pnpm typecheck
|
||||
RUN NODE_OPTIONS='--max-old-space-size=4096' corepack pnpm build:all
|
||||
RUN find . -name "node_modules" -type d -prune
|
||||
RUN pnpm install --prod
|
||||
RUN corepack pnpm install --prod
|
||||
|
||||
FROM node:16-alpine
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
Reference in New Issue
Block a user