mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-03-12 16:28:04 +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"]
|