👔 add nes20tool
All checks were successful
dl / lint (push) Successful in 1m17s
dl / docker (push) Successful in 1m43s

This commit is contained in:
Michel Roux 2024-02-23 12:30:41 +01:00
parent 0e645e463a
commit 48b68f0fbe

View File

@ -1,3 +1,8 @@
FROM golang:1.22.0 as NES20Tool
RUN git clone https://github.com/Kreeblah/NES20Tool.git && \
cd NES20Tool && go build
FROM linuxserver/ffmpeg:6.1.1-cli-ls124
RUN apt-get update && \
@ -11,6 +16,7 @@ RUN apt-get update && \
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"]