fix: Fix Dockerfile COPY command for correct build context

This commit is contained in:
Apple
2025-12-02 08:58:48 -08:00
parent bc4338f2c0
commit d659f8fd32

View File

@@ -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