feat: auto build csv

This commit is contained in:
2025-02-17 18:51:11 +07:00
parent 27589764ef
commit 61064cd06c
6 changed files with 668 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN mkdir -p data
CMD ["node", "index.js"]