Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ FROM deps-dev AS build
# when only application source code changes.
COPY prisma ./prisma
COPY prisma.config.ts ./
COPY tsconfig.json ./
COPY src/loadEnvFile.ts ./src/loadEnvFile.ts

ENV DATABASE_URL="file:/tmp/build.db"
Expand Down
5 changes: 3 additions & 2 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
generator client {
provider = "prisma-client"
output = "../src/generated/prisma"
provider = "prisma-client"
output = "../src/generated/prisma"
importFileExtension = "js"
}

datasource db {
Expand Down
Loading