File size: 140 Bytes
a51fc29
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM node:20-alpine
WORKDIR /app
COPY . .
RUN chmod 777 /app
RUN npm install express body-parser axios
EXPOSE 7860
CMD ["node", "server.js"]