fix(docker): use absolute tsconfig.json path for tsc
CI / Lint & Typecheck (pull_request) Successful in 15s
CI / Test (pull_request) Successful in 20s
CI / Build & Push Docker Image (pull_request) Failing after 19s

tsc -p /app does not resolve to tsconfig.json at /app/tsconfig.json
without an explicit filename. Pass the full path.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-20 12:51:51 +00:00
committed by Flea Flicker [agent]
parent fc82e24ead
commit e417d8f6a7
+1 -1
View File
@@ -16,7 +16,7 @@ COPY packages/ packages/
COPY src/ src/
RUN pnpm --filter @groombook/types build && \
pnpm --filter @groombook/db build && \
/app/node_modules/.bin/tsc -p /app
/app/node_modules/.bin/tsc -p /app/tsconfig.json
# Runtime
FROM node:20-alpine AS runner