mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-08 21:19:19 +01:00
9 lines
211 B
Docker
9 lines
211 B
Docker
|
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"]
|