Skip to content

Instantly share code, notes, and snippets.

@phoenixg
Created February 9, 2014 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phoenixg/8896196 to your computer and use it in GitHub Desktop.
Save phoenixg/8896196 to your computer and use it in GitHub Desktop.
under testing
FROM ubuntu
RUN sudo echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
RUN sudo apt-get update
RUN sudo apt-get install -y Dialog
RUN sudo apt-get install -y wget
RUN sudo apt-get install -y vim
RUN sudo apt-get install -y git
RUN sudo apt-get install -y gcc
RUN sudo apt-get install -y make
RUN sudo apt-get install -y yasm
RUN wget http://kakola.googlecode.com/files/lame-3.98.4.tar.gz
RUN tar zvxf lame-3.98.4.tar.gz
RUN cd lame-3.98.4
RUN ./configure --enable-shared
RUN make
RUN make install
RUN wget http://ffmpeg.org/releases/ffmpeg-2.1.1.tar.bz2
RUN tar -xvjf ffmpeg-2.1.1.tar.bz2
RUN cd ffmpeg-2.1.1
RUN ./configure --enable-libmp3lame
RUN make
RUN make install
RUN sudo apt-get -y install apache2
RUN sudo apt-get -y install youtube-dl
RUN youtube-dl -U
RUN youtube-dl -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment