初始化测试

This commit is contained in:
ilovintit
2026-03-04 13:25:48 +08:00
commit a8a5ca2e75
12 changed files with 13636 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:24-alpine
RUN mkdir /app
WORKDIR /app
COPY . /app
RUN npm install
ENTRYPOINT ["node /app/script/index.js"]