dl/Dockerfile

18 lines
739 B
Docker
Raw Normal View History

2023-04-14 07:11:56 +00:00
FROM linuxserver/ffmpeg:5.1.2-cli-ls81
2021-05-13 15:26:05 +00:00
RUN apt-get update && \
2022-01-12 10:26:45 +00:00
apt-get install -y \
2023-01-30 00:19:30 +00:00
vim p7zip* git rsync ncftp speedtest-cli rename wget curl procps psmisc \
2022-12-24 11:04:46 +00:00
openssh-client transmission-cli python3-pip \
2022-12-24 10:47:15 +00:00
python3-requests python3-bs4 && \
2021-05-13 15:26:05 +00:00
rm -rf /var/lib/apt/lists/*
RUN pip3 install yt-dlp charset-normalizer && \
2023-02-09 23:55:03 +00:00
curl -sSL https://raw.githubusercontent.com/MatanZ/tremc/main/tremc -o /usr/local/bin/tremc && \
2023-01-06 00:16:47 +00:00
curl -sSL https://github.com/drone/drone-cli/releases/latest/download/drone_linux_amd64.tar.gz | tar xzC /usr/local/bin && \
2022-11-02 09:31:35 +00:00
update-alternatives --set editor /usr/bin/vim.basic
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"]