Last active
August 29, 2015 14:04
-
-
Save toolness/3b5f9c48aa0d98bf4107 to your computer and use it in GitHub Desktop.
A Dockerfile that makes it easy to convert youtube videos to mp3's
This file contains hidden or 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
| FROM ubuntu:14.04 | |
| MAINTAINER Atul Varma | |
| RUN printf '\ndeb http://us.archive.ubuntu.com/ubuntu/ trusty multiverse' >> /etc/apt/sources.list | |
| RUN printf '\ndeb http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse' >> /etc/apt/sources.list | |
| RUN apt-get update | |
| RUN apt-get install -y libav-tools libavcodec-extra-54 python python-pip | |
| RUN pip install --upgrade youtube_dl |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This dockerfile has been superseded by https://github.com/toolness/youtube-to-mp3.