47ba202 5436ed6 47ba202
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM node:20 WORKDIR /app RUN npm install cors express mongodb dotenv COPY . . RUN chmod -R 777 /app EXPOSE 7860 CMD ["node", "index.js"]