Spaces:
Paused
Paused
File size: 327 Bytes
691254f 72d92d0 691254f 72d92d0 8339ccc ac6971d 691254f 72d92d0 691254f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM node:20-slim
WORKDIR /app
RUN apt-get update && \
apt-get install -y git ffmpeg && \
apt-get clean && rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/reaperofssa/banitaku.git /app
RUN npm install express cors axios dotenv fluent-ffmpeg
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["node", "index.js"] |