mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
12 lines
241 B
Docker
12 lines
241 B
Docker
FROM python:latest
|
|
MAINTAINER Justin Garrison <justinleegarrison@gmail.com>
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
mplayer \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install mps-youtube
|
|
|
|
ENTRYPOINT ["mpsyt"]
|