From 083a1aeb2e950cc6c02dcc4fc3ac5d85a4e11b09 Mon Sep 17 00:00:00 2001 From: Six <23470032+6ixfalls@users.noreply.github.com> Date: Tue, 16 Jan 2024 19:49:40 -0800 Subject: [PATCH] test deps again --- apps/client/Dockerfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/apps/client/Dockerfile b/apps/client/Dockerfile index 19043a8d..02fab621 100644 --- a/apps/client/Dockerfile +++ b/apps/client/Dockerfile @@ -8,7 +8,17 @@ FROM node:16.18.1 as builder WORKDIR /app COPY ./dist/apps/client ./yarn.lock ./prisma ./ # Install dependencies -RUN yarn install --production=false && yarn add prosemirror-keymap @next/bundle-analyzer +RUN yarn install --production=false && yarn add @next/bundle-analyzer \ + prosemirror-commands \ + prosemirror-dropcursor \ + prosemirror-gapcursor \ + prosemirror-history \ + prosemirror-keymap \ + prosemirror-model \ + prosemirror-schema-list \ + prosemirror-state \ + prosemirror-transform \ + prosemirror-view # ------------------------------------------ # PROD STAGE