fast72 commited on
Commit
3af18fb
·
verified ·
1 Parent(s): 70a3117

Upload Dockerfile (1).txt

Browse files
Files changed (1) hide show
  1. Dockerfile (1).txt +7 -0
Dockerfile (1).txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:latest
2
+ WORKDIR /app
3
+ COPY package.json .
4
+ RUN npm install
5
+ COPY . .
6
+ EXPOSE 7860
7
+ CMD ["node", "server.js"]