mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-07 12:39:10 +01:00
11 lines
179 B
Docker
11 lines
179 B
Docker
FROM python:3-alpine
|
|
LABEL maintainer "Justin Garrison <justinleegarrison@gmail.com>"
|
|
|
|
RUN apk add --no-cache \
|
|
mplayer \
|
|
mpv
|
|
|
|
RUN pip install mps-youtube
|
|
|
|
ENTRYPOINT ["mpsyt"]
|