From d659f8fd32f9d9a0c2565b4845673249be921db8 Mon Sep 17 00:00:00 2001 From: Apple Date: Tue, 2 Dec 2025 08:58:48 -0800 Subject: [PATCH] fix: Fix Dockerfile COPY command for correct build context --- apps/web/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 4c132470..4efa3277 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -15,8 +15,8 @@ FROM node:20-alpine AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules -# Copy only apps/web source -COPY apps/web/ . +# Copy source (context is already apps/web) +COPY . . # Set environment variables for build ENV NEXT_TELEMETRY_DISABLED=1