diff --git a/1.14.5/bullseye/Dockerfile b/1.14.5/bullseye/Dockerfile index 712677b..d5cc172 100644 --- a/1.14.5/bullseye/Dockerfile +++ b/1.14.5/bullseye/Dockerfile @@ -72,8 +72,7 @@ COPY --from=verify /verify/dogecoin.tar.gz ./ # Move downloaded binaries and man pages in the container system. # Setuid on binaries with $USER rights, to limit root usage. RUN tar -xvf dogecoin.tar.gz --strip-components=1 \ - && cp share/man/man1/*.1 /usr/share/man/man1 \ - && cp bin/dogecoin* /usr/local/bin \ + && cp bin/dogecoind bin/dogecoin-cli bin/dogecoin-tx /usr/local/bin/ \ && chown ${USER}:${USER} /usr/local/bin/dogecoin* \ && chmod 4555 /usr/local/bin/dogecoin* \ && rm -rf * diff --git a/1.14.5/bullseye/entrypoint.py b/1.14.5/bullseye/entrypoint.py index f20c704..ce56474 100755 --- a/1.14.5/bullseye/entrypoint.py +++ b/1.14.5/bullseye/entrypoint.py @@ -11,7 +11,6 @@ CLI_EXECUTABLES = [ "dogecoind", - "dogecoin-qt", "dogecoin-cli", "dogecoin-tx", ] @@ -53,7 +52,7 @@ def executable_options(executable): command_arguments = [executable, "-help"] #`-help-debug` display extra flag in help menu for dogecoind & qt - if executable in ["dogecoind", "dogecoin-qt"]: + if executable == "dogecoind": command_arguments.append("-help-debug") help_options = get_help(command_arguments) @@ -127,7 +126,7 @@ def run_executable(executable, executable_args): to manage a single process in a container & more predictive signal handling. """ - if executable in ["dogecoind", "dogecoin-qt"]: + if executable == "dogecoind": executable_args.append("-printtoconsole") #Switch process from root to user.