File size: 241 Bytes
7c7c0d0
f476729
7c7c0d0
 
f476729
 
 
 
 
7ee7bf5
f476729
fc16908
f476729
7c7c0d0
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"]