24 lines
940 B
Docker
24 lines
940 B
Docker
FROM golang:1.22.5 as NES20Tool
|
|
|
|
RUN git clone https://github.com/Kreeblah/NES20Tool.git && \
|
|
cd NES20Tool && go build
|
|
|
|
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 --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"]
|