mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
9 lines
225 B
Docker
9 lines
225 B
Docker
FROM python:3-alpine
|
|
|
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
|
|
|
RUN wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl && \
|
|
chmod a+rx /usr/local/bin/youtube-dl
|
|
|
|
CMD ["youtube-dl", "--help"]
|