Deploy backend - 2025-12-09 15:33:39
All checks were successful
Deploy Backend (Manual Build) / deploy (push) Successful in 5m16s
All checks were successful
Deploy Backend (Manual Build) / deploy (push) Successful in 5m16s
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user