Add tsconfig.json to Dockerfiles for BFF and Portal applications

This commit is contained in:
T. Narantuya 2025-08-29 11:26:46 +09:00
parent c7ba33fcb8
commit 432484180f
2 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@ COPY pnpm-workspace.yaml package.json pnpm-lock.yaml ./
# Copy source code
COPY packages/shared/ ./packages/shared/
COPY apps/bff/ ./apps/bff/
COPY tsconfig.json ./
# Copy node_modules from deps stage
COPY --from=deps /app/node_modules ./node_modules

View File

@ -40,6 +40,7 @@ COPY pnpm-workspace.yaml package.json pnpm-lock.yaml ./
# Copy source code
COPY packages/shared/ ./packages/shared/
COPY apps/portal/ ./apps/portal/
COPY tsconfig.json ./
# Copy node_modules from deps stage
COPY --from=deps /app/node_modules ./node_modules