dockerfiles/mpsyt/Dockerfile

12 lines
241 B
Docker
Raw Normal View History

2015-02-25 23:26:11 +01:00
FROM python:latest
MAINTAINER Justin Garrison <justinleegarrison@gmail.com>
2015-03-10 03:58:41 +01:00
RUN apt-get update && apt-get install -y \
mplayer \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
2015-02-25 23:26:11 +01:00
RUN pip install mps-youtube
ENTRYPOINT ["mpsyt"]