👷‍♂️ Update build command (#560)

Just to make sure we’re not building anything we don’t need on vercel
This commit is contained in:
Luke Vella 2023-03-14 17:54:15 +00:00 committed by GitHub
parent 1b38a3cf76
commit 5c96c0a763
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ RUN yarn --network-timeout 1000000
COPY --from=builder /app/out/full/ .
COPY turbo.json turbo.json
RUN yarn db:generate
RUN yarn turbo run build --filter=@rallly/web...
RUN yarn build
FROM node:lts AS runner

View file

@ -4,7 +4,7 @@
"version": "2.3.1",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"build": "turbo run build --filter=@rallly/web...",
"db:deploy": "turbo db:deploy",
"db:generate": "turbo db:generate",
"db:migrate": "yarn workspace @rallly/database prisma migrate dev",