File size: 133 Bytes
ef42fea
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM node:18

WORKDIR /app

COPY . .

RUN npm install express axios cheerio string-similarity

EXPOSE 7860

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