Align backend dependencies
Build and deploy Docker image / build (push) Successful in 2m20s

This commit is contained in:
Ruslan Bakiev
2026-06-07 10:52:19 +07:00
parent ed94ae514a
commit 821b9c0a03
3 changed files with 50 additions and 37 deletions
+2 -2
View File
@@ -8,11 +8,11 @@ RUN npm ci
FROM deps AS builder
COPY prisma ./prisma
RUN npx prisma generate
RUN EXCHANGE_DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres npx prisma generate
COPY tsconfig.json ./
COPY src ./src
RUN npm run build
RUN EXCHANGE_DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres npm run build
FROM deps AS runtime-deps