dl/Dockerfile

19 lines
784 B
Docker
Raw Normal View History

2022-11-01 23:55:08 +00:00
FROM linuxserver/ffmpeg:4.4-cli-ls65
2021-05-13 15:26:05 +00:00
RUN apt-get update && \
2022-01-12 10:26:45 +00:00
apt-get install -y \
2022-11-01 23:55:08 +00:00
vim p7zip* git rsync lftp speedtest-cli rename megatools wget curl procps psmisc sudo \
2022-05-27 19:47:42 +00:00
openssh-client transmission-cli python3-requests python3-pip && \
2021-05-13 15:26:05 +00:00
rm -rf /var/lib/apt/lists/*
2022-05-27 19:47:42 +00:00
RUN pip3 install yt-dlp && \
curl -sSL https://raw.githubusercontent.com/tremc/tremc/master/tremc -o /usr/local/bin/tremc && \
2021-08-25 06:40:58 +00:00
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 && \
2022-11-01 23:55:08 +00:00
update-alternatives --set editor /usr/bin/vim.basic && \
adduser abc sudo
2021-05-13 15:26:05 +00:00
COPY ./commands/* /usr/local/bin/
RUN chmod +x /usr/local/bin/*
2022-03-18 09:41:47 +00:00
ENTRYPOINT ["/init"]
2021-05-13 15:26:05 +00:00
CMD ["tail", "-F", "/dev/null"]