Spaces:
Paused
Paused
| FROM node:20-slim | |
| WORKDIR /app | |
| COPY . . | |
| RUN apt update && \ | |
| apt install -y ffmpeg && \ | |
| apt clean && rm -rf /var/lib/apt/lists/* | |
| RUN npm install express cors axios dotenv | |
| RUN chmod -R 777 /app | |
| EXPOSE 7860 | |
| CMD ["node", "index.js"] |