You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
274 B

  1. FROM node:lts
  2. RUN apt-get update || : && apt-get install python -y
  3. RUN apt-get install ffmpeg -y
  4. WORKDIR /usr/src/app
  5. COPY package*.json ./
  6. RUN npm ci
  7. # If you are building your code for production
  8. # # RUN npm ci --only=production
  9. COPY . .
  10. CMD [ "node", "main.js" ]