hlb / Dockerfile
newservers's picture
Update Dockerfile
ac6971d verified
Raw
History Blame Contribute Delete
327 Bytes
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"]