Reaperxxxx commited on
Commit
a51fc29
·
verified ·
1 Parent(s): 14e7c94

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:20-alpine
2
+ WORKDIR /app
3
+ COPY . .
4
+ RUN chmod 777 /app
5
+ RUN npm install express body-parser axios
6
+ EXPOSE 7860
7
+ CMD ["node", "server.js"]