File size: 310 Bytes
c63ec95
 
9fdeb09
 
 
 
 
c63ec95
 
 
 
 
 
 
 
 
 
9f93ed9
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM node:18-slim

# Install ffmpeg and dependencies
RUN apt-get update && \
    apt-get install -y ffmpeg && \
    rm -rf /var/lib/apt/lists/*

WORKDIR /app

COPY package*.json ./

RUN npm install

COPY . .

EXPOSE 7860

ENV PORT=7860

CMD ["./node_modules/.bin/concurrently", "node bot.js", "node server.js"]