From 075074456b00763cf0f4d9d01899c67b96b4ff03 Mon Sep 17 00:00:00 2001 From: Jackson Roberts Date: Wed, 25 Feb 2026 20:08:09 -0600 Subject: [PATCH] update dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cebaa5f..b725ac9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,10 +18,11 @@ RUN bun install --frozen-lockfile # Copy source code and supporting files COPY src/ src/ COPY prisma/ prisma/ +COPY public-keys/ public-keys/ COPY prisma.config.ts tsconfig.json ./ -# Generate Prisma client -RUN bunx prisma generate +# Generate Prisma client (dummy URL — generate only needs the schema, not a real DB) +RUN DATABASE_URL="postgresql://dummy:dummy@localhost:5432/dummy" bunx prisma generate # Compile to a standalone executable RUN bun build src/index.ts \