1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-09 07:25:19 +02:00

Copy package.json in

This commit is contained in:
Six 2024-01-16 20:38:06 -08:00
parent 083a1aeb2e
commit 8307064f3e
No known key found for this signature in database
GPG key ID: 00148D3869C21E43
2 changed files with 4 additions and 13 deletions

View file

@ -2,4 +2,5 @@
* *
!dist/ !dist/
!prisma/ !prisma/
!yarn.lock !yarn.lock
!package.json

View file

@ -6,19 +6,9 @@
FROM node:16.18.1 as builder FROM node:16.18.1 as builder
WORKDIR /app WORKDIR /app
COPY ./dist/apps/client ./yarn.lock ./prisma ./ COPY ./dist/apps/client ./yarn.lock ./prisma ./package.json ./
# Install dependencies # Install dependencies
RUN yarn install --production=false && yarn add @next/bundle-analyzer \ RUN yarn install --production=false
prosemirror-commands \
prosemirror-dropcursor \
prosemirror-gapcursor \
prosemirror-history \
prosemirror-keymap \
prosemirror-model \
prosemirror-schema-list \
prosemirror-state \
prosemirror-transform \
prosemirror-view
# ------------------------------------------ # ------------------------------------------
# PROD STAGE # PROD STAGE