dl/Dockerfile
Michel Roux e67d29610e
All checks were successful
dl / lint (push) Successful in 1m35s
dl / docker (push) Successful in 3m38s
chore: ⬆️ update lock and readd yt-dlp
2025-03-05 09:27:15 +01:00

18 lines
682 B
Docker

FROM linuxserver/ffmpeg:6.0-cli-ls104
RUN apt-get update && \
apt-get install -y \
vim p7zip* git mc rename wget curl procps psmisc \
openssh-client rsync sshpass transmission-cli speedtest-cli \
python3-bs4 python3-requests python3-transmissionrpc && \
apt-get install -y --no-install-recommends mame-tools yt-dlp && \
apt-get clean && \
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"]