Jonell01 commited on
Commit
741c682
·
verified ·
1 Parent(s): d874783

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+ WORKDIR /app
3
+ RUN git clone https://github.com/jonellcc/RickGDBot-fb-page-ver.git
4
+ WORKDIR /app/RickGDBot-fb-page-ver
5
+ RUN npm install
6
+ RUN chmod -R 777 .
7
+ EXPOSE 7860
8
+ CMD ["node", "index.js"]