mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-06 20:19:16 +01:00
11 lines
171 B
Docker
11 lines
171 B
Docker
FROM python:3-alpine
|
|
MAINTAINER Justin Garrison <justinleegarrison@gmail.com>
|
|
|
|
RUN apk add --no-cache \
|
|
mplayer \
|
|
mpv
|
|
|
|
RUN pip install mps-youtube
|
|
|
|
ENTRYPOINT ["mpsyt"]
|