FIX: prisma generate
Some checks failed
/ deploy (push) Failing after 4s

This commit is contained in:
ange 2024-10-25 19:36:26 +07:00
parent 529885d9d4
commit a3f49f2a2f
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D

View File

@ -1,9 +1,8 @@
FROM docker.io/oven/bun:1.1-slim
WORKDIR /app/
COPY package.json bun.lockb .
RUN bun install
COPY prisma/ prisma/
RUN bunx prisma generate
RUN bun install && bunx prisma generate
COPY api/ api/
COPY index.ts .
EXPOSE 3000