Initial commit

This commit is contained in:
Alexander
2026-02-14 20:36:34 +03:00
commit bc7441db20
15 changed files with 2107 additions and 0 deletions

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
# ---------- Build Stage ----------
FROM node:25-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
# ---------- Production Stage ----------
FROM node:25-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY --from=builder /app/dist ./dist
EXPOSE 3000
CMD ["node", "dist/index.js"]