fix(docker): copy tsconfig.base.json in Dockerfiles

This commit is contained in:
AyrisAI
2026-08-20 01:58:57 +03:00
parent 437af0b251
commit 6843c153ef
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ FROM base AS builder
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json pnpm-lock.yaml* pnpm-workspace.yaml ./
COPY package.json pnpm-lock.yaml* pnpm-workspace.yaml tsconfig.base.json ./
COPY packages/shared/package.json ./packages/shared/
COPY apps/api/package.json ./apps/api/
+1 -1
View File
@@ -9,7 +9,7 @@ RUN apk add --no-cache libc6-compat
WORKDIR /app
# Copy root workspace configurations
COPY package.json pnpm-lock.yaml* pnpm-workspace.yaml ./
COPY package.json pnpm-lock.yaml* pnpm-workspace.yaml tsconfig.base.json ./
COPY packages/shared/package.json ./packages/shared/
COPY apps/web/package.json ./apps/web/