feat: add dockerfile and ci workflow
Some checks failed
Node.js CI for Gitea / lint (push) Failing after 33s
Node.js CI for Gitea / test (push) Has been skipped
Node.js CI for Gitea / build (push) Has been skipped

This commit is contained in:
2026-05-18 02:26:18 +03:00
parent 089f1a6ba1
commit b94761e9d9
2 changed files with 61 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
CMD ["node", "index.js"]