Add real youtube-dl package
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Michel Roux 2021-08-25 09:11:49 +02:00
parent 9e502f056b
commit 1c0da752d1
2 changed files with 3 additions and 5 deletions

View File

@ -12,4 +12,3 @@ steps:
from_secret: docker_username from_secret: docker_username
password: password:
from_secret: docker_password from_secret: docker_password

View File

@ -6,11 +6,10 @@ ENV PGID 1000
ENV LANG C.UTF-8 ENV LANG C.UTF-8
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y vim ffmpeg p7zip* git rsync lftp speedtest-cli rename megatools wget curl procps \ apt-get install -y vim p7zip* git rsync lftp speedtest-cli rename megatools wget curl procps \
openssh-client transmission-cli python3-pip python3-requests && \ openssh-client transmission-cli python3-pip python3-requests youtube-dl && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
RUN pip3 install youtube_dl && \ RUN curl -sSL https://raw.githubusercontent.com/tremc/tremc/master/tremc -o /usr/local/bin/tremc && \
curl -sSL https://raw.githubusercontent.com/tremc/tremc/master/tremc -o /usr/local/bin/tremc && \
curl -sSL https://github.com/drone/drone-cli/releases/latest/download/drone_linux_amd64.tar.gz | tar xvz && \ curl -sSL https://github.com/drone/drone-cli/releases/latest/download/drone_linux_amd64.tar.gz | tar xvz && \
install -vt /usr/local/bin drone && rm -vf drone && \ install -vt /usr/local/bin drone && rm -vf drone && \
groupadd -g $PGID xefir && adduser --uid $PUID --gid $PGID --disabled-password --gecos "" xefir && \ groupadd -g $PGID xefir && adduser --uid $PUID --gid $PGID --disabled-password --gecos "" xefir && \