Create Dockerfile

This commit is contained in:
Abhinai Reddy⛔️
2025-09-26 17:56:13 +05:30
committed by GitHub
parent 1150c21ebe
commit dbd8815419

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:18-slim
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 8080
# Default to production mode
CMD ["npm", "start"]
# For development mode, override with: docker run -e NODE_ENV=development ...
CMD ["npm", "run", "dev"]
#ABHI