dl/Dockerfile
Michel Roux baaf3f3c20
All checks were successful
dl / lint (push) Successful in 1m24s
dl / docker (push) Successful in 1h14m36s
fix: 🗑️ do not build nestool anymore / remove has_files
2024-08-03 18:19:47 +02:00

18 lines
745 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 transmission-cli speedtest-cli \
python3-requests python3-transmissionrpc && \
apt-get install -y --no-install-recommends mame-tools yt-dlp && \
rm -rf /var/lib/apt/lists/* && \
curl -sSL https://raw.githubusercontent.com/MatanZ/tremc/main/tremc -o /usr/local/bin/tremc && \
curl -sSL https://raw.githubusercontent.com/putnam/binmerge/master/binmerge -o /usr/local/bin/binmerge && \
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"]