File size: 151 Bytes
3ef64a4
 
 
 
426269f
3ef64a4
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM node:20-slim

WORKDIR /app

RUN npm init -y && npm install express node-cache axios uuid

COPY server.js .

EXPOSE 7860

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