dl/Dockerfile

17 lines
660 B
Docker
Raw Normal View History

2023-09-01 07:32:48 +00:00
FROM linuxserver/ffmpeg:6.0-cli-ls98
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-06-12 17:12:47 +00:00
vim p7zip* git mc speedtest-cli rename wget curl procps psmisc \
2023-04-20 22:09:06 +00:00
openssh-client transmission-cli \
2023-04-23 19:51:03 +00:00
python3-bs4 python3-charset-normalizer python3-requests python3-transmissionrpc && \
2023-04-20 22:10:03 +00:00
apt-get install -y --no-install-recommends yt-dlp && \
2023-04-20 22:09:06 +00:00
rm -rf /var/lib/apt/lists/* && \
2023-02-09 23:55:03 +00:00
curl -sSL https://raw.githubusercontent.com/MatanZ/tremc/main/tremc -o /usr/local/bin/tremc && \
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"]