main
All checks were successful
CI / build (push) Successful in 57s
Deploy Backend / build-and-deploy (push) Successful in 2m22s

This commit is contained in:
2026-02-07 01:09:56 +03:00
parent 461019707f
commit fc41428473
2 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
# Install dependencies # Install dependencies
RUN apk add --no-cache python3 make g++ RUN apk add --no-cache python3 make g++ openssl libc6-compat
RUN npm ci RUN npm ci
# Copy source code # Copy source code
@@ -28,7 +28,7 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
# Install production dependencies only # Install production dependencies only
RUN apk add --no-cache python3 make g++ RUN apk add --no-cache python3 make g++ openssl libc6-compat
RUN npm ci --only=production RUN npm ci --only=production
# Copy Prisma schema and generate client # Copy Prisma schema and generate client

View File

@@ -2,7 +2,8 @@
// learn more about it in the docs: https://pris.ly/d/prisma-schema // learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client { generator client {
provider = "prisma-client-js" provider = "prisma-client-js"
binaryTargets = ["native", "linux-musl-arm64-openssl-3.0.x"]
} }
datasource db { datasource db {