Update Docker labels and binaryTargets

This commit is contained in:
Jesse Wierzbinski 2024-04-06 23:34:16 -10:00
parent 257243aa0c
commit ae2173e8b1
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@ jobs:
with: with:
context: . context: .
file: Dockerfile file: Dockerfile
labels: ${{ steps.meta.outputs.labels }} labels: latest #${{ steps.meta.outputs.labels }}
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max
platforms: ${{ matrix.platform }} platforms: ${{ matrix.platform }}

View file

@ -2,7 +2,7 @@ generator client {
provider = "prisma-client-js" provider = "prisma-client-js"
previewFeatures = ["postgresqlExtensions"] previewFeatures = ["postgresqlExtensions"]
// These last two lines are important for Docker! // These last two lines are important for Docker!
binaryTargets = ["native", "linux-musl-openssl-3.0.x", "linux-musl-arm64-openssl-3.0.x"] binaryTargets = ["native", "debian-openssl-3.0.x", "linux-musl-openssl-3.0.x", "linux-musl-arm64-openssl-3.0.x"]
} }
generator json { generator json {