first commit

This commit is contained in:
Archeb
2024-04-07 23:40:39 +08:00
commit 53a8dd6d68
7 changed files with 284 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:21
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
CMD [ "node", "index.js" ]