add pipeline

This commit is contained in:
2026-05-23 09:54:52 +03:00
parent 1530d52c90
commit 92941d43de
4 changed files with 1552 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
EXPOSE 4000
CMD ["node", "index.js"]