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
+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"]