修改cicd
Some checks failed
CI Pipeline / build (push) Failing after 1m39s

This commit is contained in:
2025-08-11 19:42:48 +08:00
parent 8013ea2bc8
commit 97ad55a919
4 changed files with 71 additions and 1028 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]