Load backend secrets from Vault
Some checks failed
Build and deploy Backend / build (push) Failing after 27s

This commit is contained in:
Ruslan Bakiev
2026-05-08 16:57:41 +07:00
parent f956148141
commit e55a7f1f37
3 changed files with 69 additions and 1 deletions

View File

@@ -5,7 +5,6 @@ RUN npm ci
FROM node:22-alpine AS build
WORKDIR /app
ENV DATABASE_URL="postgresql://mapflow:mapflow@localhost:5432/mapflow"
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN npm run prisma:generate