From e417d8f6a7c5b2817deb80704cab4f2a8fb135ee Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 12:51:51 +0000 Subject: [PATCH] fix(docker): use absolute tsconfig.json path for tsc 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 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b96f705..20b0c46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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