Jonell01 commited on
Commit
dc3e724
·
verified ·
1 Parent(s): 7d117bc

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+ WORKDIR /app
3
+ COPY package.json ./
4
+ RUN npm install
5
+ COPY . .
6
+ RUN chmod -R 777 /app
7
+ EXPOSE 7860
8
+ USER root
9
+ CMD ["node", "index.js"]