From 46811de4533fec4fa2cdd4fd2bd94a415d42971b Mon Sep 17 00:00:00 2001 From: Six <23470032+6ixfalls@users.noreply.github.com> Date: Tue, 16 Jan 2024 19:22:16 -0800 Subject: [PATCH] Update Dockerfile Signed-off-by: Six <23470032+6ixfalls@users.noreply.github.com> --- apps/client/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/client/Dockerfile b/apps/client/Dockerfile index b29cfd4b..5e1e1089 100644 --- a/apps/client/Dockerfile +++ b/apps/client/Dockerfile @@ -7,9 +7,8 @@ FROM node:16.18.1 as builder WORKDIR /app COPY ./dist/apps/client ./yarn.lock ./prisma ./ -COPY ./package.json ./ # Install dependencies -RUN yarn install --production=false +RUN yarn install --production=false && yarn add prosemirror-keymap @next/bundle-analyzer # ------------------------------------------ # PROD STAGE @@ -22,4 +21,4 @@ WORKDIR /app USER node COPY --from=builder /app . -CMD ["npx", "next start"] \ No newline at end of file +CMD ["npx", "next start"]