youtube-dl-docker/Dockerfile

21 lines
525 B
Docker
Raw Normal View History

2019-07-22 02:02:17 +00:00
FROM ubuntu:bionic
ENV DEBIAN_FRONTEND noninteractive
ENV HOME /root
RUN apt update && apt -y upgrade
2019-07-22 02:48:52 +00:00
RUN apt install -y python3-pip ffmpeg locales
RUN echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen && locale-gen && update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
2019-07-22 02:02:17 +00:00
2019-07-22 02:48:52 +00:00
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
2019-07-22 02:02:17 +00:00
RUN pip3 install youtube_dl
2019-07-22 02:48:52 +00:00
ADD youtube-dl.conf /etc/youtube-dl.conf
ADD entrypoint.sh /usr/local/bin/entrypoint.sh
2019-07-22 02:02:17 +00:00
2019-07-22 02:48:52 +00:00
USER nobody:nogroup
WORKDIR /tmp
CMD /bin/bash /usr/local/bin/entrypoint.sh