From 060f5e207e70832ec1764541b22a7dec5e28c888 Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Wed, 24 Apr 2019 22:17:25 +1000 Subject: [PATCH] added ffmpeg into docker --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index e5e7e1d..f59f183 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,15 @@ WORKDIR /app # We copy our package.json file to our # app directory COPY package.json /app + + +RUN apt-get update \ + && apt-get clean \ + && apt-get install -y ffmpeg + # We then run npm install to install # express for our applicationRUN + RUN npm install # We then copy the rest of our application # to the app direcoty