File size: 175 Bytes
a23ddcf
76e79cc
 
 
 
 
 
 
 
 
 
 
a23ddcf
1
2
3
4
5
6
7
8
9
10
11
12
13
RUN apt-get update && rm -rf /var/lib/apt/lists/* && apt install ffmpeg -y

WORKDIR /app

COPY package.json .

RUN npm install

COPY . .

EXPOSE 7860

CMD ["node", "index.js"]