update dockerfile

This commit is contained in:
2026-02-25 20:04:59 -06:00
parent d531e1ca83
commit 9b0ce047a6
+3 -2
View File
@@ -17,11 +17,12 @@ RUN bun install --frozen-lockfile
# Copy source code and supporting files # Copy source code and supporting files
COPY src/ src/ COPY src/ src/
COPY generated/ generated/
COPY prisma/ prisma/ COPY prisma/ prisma/
COPY public-keys/ public-keys/
COPY prisma.config.ts tsconfig.json ./ COPY prisma.config.ts tsconfig.json ./
# Generate Prisma client
RUN bunx prisma generate
# Compile to a standalone executable # Compile to a standalone executable
RUN bun build src/index.ts \ RUN bun build src/index.ts \
--compile \ --compile \