added mps-youtube dockerfile

This commit is contained in:
Justin Garrison 2015-02-25 14:26:11 -08:00
parent 7497c01c4e
commit ae097b02c2
2 changed files with 19 additions and 0 deletions

8
mpsyt/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM python:latest
MAINTAINER Justin Garrison <justinleegarrison@gmail.com>
RUN apt-get update && apt-get install -y mplayer
RUN pip install mps-youtube
RUN apt-get clean && apt-get purge
ENTRYPOINT ["mpsyt"]

11
mpsyt/README Normal file
View File

@ -0,0 +1,11 @@
mps-youtube
--------
Docker container for running [mpsyt](https://github.com/np1/mps-youtube) inside
a docker container.
Run with
```
docker run -v /dev/snd:/dev/snd -it --rm rothgar/mpsyt
```