FROM linuxserver/ffmpeg:5.1.2-cli-ls81 RUN apt-get update && \ apt-get install -y \ vim p7zip* git rsync ncftp speedtest-cli rename wget curl procps psmisc \ openssh-client transmission-cli python3-pip \ python3-requests python3-bs4 && \ rm -rf /var/lib/apt/lists/* RUN pip3 install yt-dlp charset-normalizer && \ curl -sSL https://raw.githubusercontent.com/MatanZ/tremc/main/tremc -o /usr/local/bin/tremc && \ curl -sSL https://github.com/drone/drone-cli/releases/latest/download/drone_linux_amd64.tar.gz | tar xzC /usr/local/bin && \ update-alternatives --set editor /usr/bin/vim.basic COPY ./commands/* /usr/local/bin/ RUN chmod +x /usr/local/bin/* ENTRYPOINT ["/init"] CMD ["tail", "-F", "/dev/null"]