yeshwanth-kr commited on
Commit
3ee2eae
·
verified ·
1 Parent(s): 8c7b7ca

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . .
6
+
7
+ RUN npm i
8
+
9
+ EXPOSE 5000
10
+
11
+ CMD ["npm","run","start"]