File size: 296 Bytes
6f056b7
62c4c40
a3d7288
0879cd7
535bc24
 
 
76e79cc
8d79164
69c75b6
8d79164
 
 
64da08d
5861223
a8c5bee
76e79cc
 
 
535bc24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM node:20

WORKDIR /app

COPY .npmrc ./

COPY package*.json ./

RUN apt-get update && \
    apt-get install -y ffmpeg python3.11-venv python3.11-distutils python3-pip && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*

RUN npm install

COPY . .

EXPOSE 7860

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