File size: 180 Bytes
013f4c8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM node:18

WORKDIR /app

RUN rm -rf /app/*

RUN git clone https://github.com/ReirLair/scanx /app

RUN npm install

RUN chmod -R 777 /app

EXPOSE 7860

CMD ["node", "server.js"]