Skip to content

Instantly share code, notes, and snippets.

@rujmah
Last active August 29, 2015 14:22
Show Gist options
  • Save rujmah/3e6facd5ca4f9703e021 to your computer and use it in GitHub Desktop.
Save rujmah/3e6facd5ca4f9703e021 to your computer and use it in GitHub Desktop.
Nodejs with ffmpeg Dockerfile
# 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