Deploy backend - 2025-12-09 15:33:39
All checks were successful
Deploy Backend (Manual Build) / deploy (push) Successful in 5m16s

This commit is contained in:
2025-12-09 15:33:39 +08:00
parent dbdce0c64e
commit 52ec8de257
3 changed files with 450 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# Build stage
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
EXPOSE 5001
CMD ["npm", "start"]