fix: Fix Dockerfile COPY command for correct build context
This commit is contained in:
@@ -15,8 +15,8 @@ FROM node:20-alpine AS builder
|
|||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY --from=deps /app/node_modules ./node_modules
|
COPY --from=deps /app/node_modules ./node_modules
|
||||||
# Copy only apps/web source
|
# Copy source (context is already apps/web)
|
||||||
COPY apps/web/ .
|
COPY . .
|
||||||
|
|
||||||
# Set environment variables for build
|
# Set environment variables for build
|
||||||
ENV NEXT_TELEMETRY_DISABLED=1
|
ENV NEXT_TELEMETRY_DISABLED=1
|
||||||
|
|||||||
Reference in New Issue
Block a user