Spaces:
Paused
Paused
| FROM node:18 | |
| RUN apt-get update && apt-get install -y git | |
| COPY . /app | |
| WORKDIR /app | |
| RUN npm install express axios crypto express-rate-limit | |
| RUN chmod -R 777 /app | |
| EXPOSE 7860 | |
| CMD ["node", "app.js"] |