dl/Dockerfile
Michel Roux 876c57e220
All checks were successful
dl / lint (push) Successful in 1m33s
dl / docker (push) Successful in 3m10s
Actualiser Dockerfile
2023-08-04 08:05:17 +00:00

17 lines
660 B
Docker

FROM linuxserver/ffmpeg:6.0-cli-ls95
RUN apt-get update && \
apt-get install -y \
vim p7zip* git mc speedtest-cli rename wget curl procps psmisc \
openssh-client transmission-cli \
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"]