Update docker config for production deployment

This commit is contained in:
Mohan Ki
2026-07-27 13:53:10 +05:30
parent 40667e54ac
commit b9454df5c9
4 changed files with 37 additions and 9 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
CMD ["npm", "start"]