Skip to content

Commit

Permalink
Removed Prisma fixes from v5.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecao committed Jan 10, 2025
1 parent 021744a commit 6e158be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs

RUN set -x \
&& apk add --no-cache curl openssl \
&& yarn add npm-run-all dotenv semver prisma@5.17.0
&& apk add --no-cache curl \
&& yarn add npm-run-all dotenv semver prisma

# You only need to copy next.config.js if you are NOT using the default configuration
COPY --from=builder /app/next.config.js .
Expand Down
2 changes: 1 addition & 1 deletion db/mysql/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "linux-musl-openssl-3.0.x", "linux-musl-arm64-openssl-3.0.x"]
binaryTargets = ["native"]
}

datasource db {
Expand Down
2 changes: 1 addition & 1 deletion db/postgresql/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "linux-musl-openssl-3.0.x", "linux-musl-arm64-openssl-3.0.x"]
binaryTargets = ["native"]
}

datasource db {
Expand Down

0 comments on commit 6e158be

Please sign in to comment.