dl/Dockerfile
Michel Roux 99952736e5
Some checks failed
dl / docker (push) Blocked by required conditions
dl / lint (push) Has been cancelled
feat: 🗑️ remove old retro container
2025-01-11 13:05:53 +01:00

19 lines
803 B
Docker

FROM linuxserver/ffmpeg:6.0-cli-ls104
RUN apt-get update && \
apt-get install -y \
vim p7zip* git mc lftp rename wget curl procps psmisc \
openssh-client transmission-cli speedtest-cli \
python3-bs4 python3-requests python3-transmissionrpc python3-pip && \
pip install 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 --from=nes20tool /go/NES20Tool/NES20Tool /usr/local/bin/NES20Tool
COPY ./commands/* /usr/local/bin/
RUN chmod +x /usr/local/bin/*
ENTRYPOINT ["/init"]
CMD ["tail", "-F", "/dev/null"]