Last active
August 29, 2015 14:22
-
-
Save rujmah/3e6facd5ca4f9703e021 to your computer and use it in GitHub Desktop.
Nodejs with ffmpeg Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Creates am image with node and ffmpeg | |
# run: | |
# $ docker build -t reponame/imagename:version | |
FROM node:0.12 | |
RUN apt-get update \ | |
&& apt-get install yasm \ | |
&& wget http://ffmpeg.org/releases/ffmpeg-2.5.tar.bz2 \ | |
&& tar -xvf ffmpeg-2.5.tar.bz2 \ | |
&& cd ffmpeg-2.5 \ | |
&& ./configure \ | |
&& make \ | |
&& make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment