We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 397b2f1 commit d26be52Copy full SHA for d26be52
Dockerfile.chase.backend
@@ -29,6 +29,8 @@ FROM oven/bun:alpine AS release
29
WORKDIR /app/prod
30
# dependencies
31
COPY --from=builder /app/staging/chase/backend/out .
32
+# we need the generated prisma files at runtime since it contains the prisma engine
33
+COPY --from=builder /app/staging/chase/backend/prisma ./prisma/
34
ENV NODE_ENV=production
35
ENV PORT=3001
36
# run the app
chase/backend/prisma/schema.prisma
@@ -4,6 +4,7 @@
4
generator client {
5
provider = "prisma-client-js"
6
output = "./generated/client"
7
+ binaryTargets = ["native", "linux-musl-openssl-3.0.x"]
8
}
9
10
datasource db {
0 commit comments