17 lines
667 B
Docker
17 lines
667 B
Docker
FROM linuxserver/ffmpeg:6.0-cli-ls99
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y \
|
|
vim p7zip* git mc speedtest-cli rename wget curl procps psmisc \
|
|
openssh-client transmission-cli rclone \
|
|
python3-bs4 python3-charset-normalizer python3-requests python3-transmissionrpc && \
|
|
apt-get install -y --no-install-recommends yt-dlp && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
curl -sSL https://raw.githubusercontent.com/MatanZ/tremc/main/tremc -o /usr/local/bin/tremc && \
|
|
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"]
|