mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-02 10:12:49 +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"]
|