feat: add Zeabur deployment configuration

This commit is contained in:
zhang1106
2026-03-05 11:13:38 +08:00
parent ea2fc74686
commit df125181ce
8 changed files with 316 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
node_modules
npm-debug.log
.env
.env.local
.env.*.local
dist
.git
.gitignore
*.md
.DS_Store
Thumbs.db
*.log
coverage
.nyc_output
.vscode
.idea
*.swp
*.swo
*~
+15
View File
@@ -0,0 +1,15 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
RUN mkdir -p uploads/avatars temp
EXPOSE 8000
CMD ["node", "server.js"]