fix: Dockerfile 复制 tsconfig.json 到 runner 镜像

This commit is contained in:
aiyimickey 2026-07-01 19:28:41 +08:00
parent da6077996d
commit e47f2c18c0
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ COPY --from=base /app/.next/static ./.next/static
COPY --from=base /app/scripts ./scripts COPY --from=base /app/scripts ./scripts
COPY --from=base /app/src/lib ./src/lib COPY --from=base /app/src/lib ./src/lib
COPY --from=base /app/shared ./shared COPY --from=base /app/shared ./shared
COPY --from=base /app/tsconfig.json ./
COPY entrypoint.sh ./ COPY entrypoint.sh ./
RUN npm install -g tsx RUN npm install -g tsx