Reaperxxxx commited on
Commit
7c9d76c
·
verified ·
1 Parent(s): 355f75e

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:20
2
+ WORKDIR /app
3
+ RUN rm -rf /app/*
4
+ RUN git clone https://github.com/ReirLair/frun.git /app
5
+ RUN npm install express axios
6
+ EXPOSE 7860
7
+ CMD ["node", "app.js"]