File size: 164 Bytes
7c9d76c
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM node:20
WORKDIR /app
RUN rm -rf /app/*
RUN git clone https://github.com/ReirLair/frun.git /app
RUN npm install express axios
EXPOSE 7860
CMD ["node", "app.js"]