From 5c96c0a763bd44a33481431e29b40f721eca076d Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Tue, 14 Mar 2023 17:54:15 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=82=EF=B8=8F=20Updat?= =?UTF-8?q?e=20build=20command=20(#560)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just to make sure we’re not building anything we don’t need on vercel --- apps/web/Dockerfile | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 4858cd59d..013b45a62 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -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 diff --git a/package.json b/package.json index dfda37f53..9df626565 100644 --- a/package.json +++ b/package.json @@ -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",