fix: also need to build database

This commit is contained in:
2023-12-27 18:52:48 +00:00
parent 8653f5b7eb
commit 97a66d877c
2 changed files with 2 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ COPY . .
RUN bash ./apps/api/util/setup.sh
RUN yarn
RUN yarn build:database
RUN yarn build:api
CMD yarn start:api

View File

@@ -10,6 +10,7 @@
],
"scripts": {
"build:api": "yarn workspace api build",
"build:database": "yarn workspace database build",
"build:frontend": "yarn workspace frontend build",
"start:api": "yarn workspace api start",
"start:frontend": "yarn workspace frontend start",