Initial commit: summary.edemium.ru - meeting summary generator

This commit is contained in:
root
2026-02-12 12:17:36 +00:00
commit 085cc9a837
6 changed files with 1644 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY . .
EXPOSE 3004
CMD ["node", "server.js"]