From f4185364d5d08764bd1b343501c5a5efc7063d57 Mon Sep 17 00:00:00 2001 From: Vectry Date: Wed, 11 Feb 2026 00:02:00 +0000 Subject: [PATCH] fix: use correct package name @agentlens/web in turbo filter --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 873af25..7e75a8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ FROM base AS builder COPY --from=deps /app/node_modules ./node_modules COPY . . RUN npx prisma generate --schema=packages/database/prisma/schema.prisma -RUN npx turbo build --filter=web... +RUN npx turbo build --filter=@agentlens/web... FROM base AS migrate COPY --from=deps /app/node_modules ./node_modules