auth services implmented

This commit is contained in:
2025-07-25 22:46:37 +03:00
parent 8ca2d34dc6
commit b4b752ca3a
92 changed files with 5282 additions and 296 deletions

View File

@@ -3,12 +3,12 @@ FROM node:20-alpine AS builder
WORKDIR /usr/src/app
COPY backend/package*.json ./
COPY ServicesApi/package*.json ./
RUN npm install -g npm@latest
RUN npm ci
RUN npm ci --legacy-peer-deps
COPY backend .
COPY ServicesApi .
RUN npm run build