mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-18 18:17:51 +01:00
12 lines
247 B
Docker
12 lines
247 B
Docker
FROM python:2-alpine
|
|
MAINTAINER Justin Garrison <justinleegarrison@gmail.com>
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
mplayer mpv \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install mps-youtube
|
|
|
|
ENTRYPOINT ["mpsyt"]
|