Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I install ffmpeg to my docker image

Tags:

docker

ffmpeg

I have setup a docker image in my Windows 10 Machine. Can you please tell me how can I install ffmpeg to that docker image?

like image 242
n179911 Avatar asked Jul 05 '17 02:07

n179911


1 Answers

apt-get install ffmpeg

As of 2019, this seems to work, just fine on Docker.

Dockerfile

RUN apt-get -y update
RUN apt-get -y upgrade
RUN apt-get install -y ffmpeg
like image 125
Rohan Sawant Avatar answered Sep 21 '22 19:09

Rohan Sawant