From 9b0ce047a68e1fd1ee28e9e694fb11eeda8e2e3c Mon Sep 17 00:00:00 2001 From: Jackson Roberts Date: Wed, 25 Feb 2026 20:04:59 -0600 Subject: [PATCH] update dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 912435a..cebaa5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,11 +17,12 @@ RUN bun install --frozen-lockfile # Copy source code and supporting files COPY src/ src/ -COPY generated/ generated/ COPY prisma/ prisma/ -COPY public-keys/ public-keys/ COPY prisma.config.ts tsconfig.json ./ +# Generate Prisma client +RUN bunx prisma generate + # Compile to a standalone executable RUN bun build src/index.ts \ --compile \