13 lines
218 B
Docker
13 lines
218 B
Docker
|
FROM ubuntu:bionic
|
||
|
|
||
|
ENV DEBIAN_FRONTEND noninteractive
|
||
|
ENV HOME /root
|
||
|
|
||
|
RUN apt update && apt -y upgrade
|
||
|
|
||
|
RUN apt install -y python3-pip
|
||
|
|
||
|
RUN pip3 install youtube_dl
|
||
|
|
||
|
ADD youtube-dl.conf /root/.config/youtube-dl/config
|