From 6d01bf82e7d259724527bf5222e2aaaf649cb53b Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Tue, 1 Nov 2022 23:55:08 +0000 Subject: [PATCH] Add sudo and bump to 65 --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8989e41..95a9755 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,16 @@ -FROM linuxserver/ffmpeg:4.4-cli-ls64 +FROM linuxserver/ffmpeg:4.4-cli-ls65 RUN apt-get update && \ apt-get install -y \ - vim p7zip* git rsync lftp speedtest-cli rename megatools wget curl procps psmisc \ + vim p7zip* git rsync lftp speedtest-cli rename megatools wget curl procps psmisc sudo \ openssh-client transmission-cli python3-requests python3-pip && \ rm -rf /var/lib/apt/lists/* RUN pip3 install yt-dlp && \ 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 && \ install -vt /usr/local/bin drone && rm -vf drone && \ - update-alternatives --set editor /usr/bin/vim.basic + update-alternatives --set editor /usr/bin/vim.basic && \ + adduser abc sudo COPY ./commands/* /usr/local/bin/ RUN chmod +x /usr/local/bin/*