ci: add dockerfile

This commit is contained in:
Zotov Ivan Yuryevich
2026-04-29 22:16:42 +03:00
parent 9a2bf64c56
commit 8931d9514a
2 changed files with 51 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:22
WORKDIR /app
COPY package.json ./
COPY package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]