FROM node:latest RUN apt-get update -y && apt-get upgrade -y && apt-get install -y lsb-release && apt-get install -y && apt-get install ffmpeg -y RUN rm -rf /var/lib/apt/lists/* WORKDIR /app COPY package.json . RUN npm i COPY . . EXPOSE 7860 CMD ["node", "api/index.js"]