Spaces:
Running
Running
FROM node:20 | |
WORKDIR /app | |
RUN npm install cors express mongodb dotenv | |
COPY . . | |
RUN chmod -R 777 /app | |
EXPOSE 7860 | |
CMD ["node", "index.js"] |