Dockerfile 230 B

12345678910111213
  1. FROM node:16
  2. WORKDIR /usr/src/app
  3. COPY package*.json ./
  4. RUN add-apt-repository --yes ppa:stebbins/handbrake-releases
  5. RUN apt-get update && apt-get install -y handbrake-cli
  6. RUN npm install
  7. COPY . .
  8. CMD [ "npm", "run", "all" ]