added ffmpeg into docker

This commit is contained in:
2019-04-24 22:17:25 +10:00
parent e90a8db4ee
commit 060f5e207e

View File

@@ -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