Skip to content

Commit 425e340

Browse files
committed
refactor: remove dogecoin-qt
we don't currently support the use of X window system/server (xlib/libX11) thus rendering dogecoin-qt as unnecessary bloat.
1 parent f4e0f9e commit 425e340

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

1.14.5/bullseye/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ COPY --from=verify /verify/dogecoin.tar.gz ./
7272
# Move downloaded binaries and man pages in the container system.
7373
# Setuid on binaries with $USER rights, to limit root usage.
7474
RUN tar -xvf dogecoin.tar.gz --strip-components=1 \
75-
&& cp share/man/man1/*.1 /usr/share/man/man1 \
76-
&& cp bin/dogecoin* /usr/local/bin \
75+
&& cp bin/dogecoind bin/dogecoin-cli bin/dogecoin-tx /usr/local/bin/ \
7776
&& chown ${USER}:${USER} /usr/local/bin/dogecoin* \
7877
&& chmod 4555 /usr/local/bin/dogecoin* \
7978
&& rm -rf *

1.14.5/bullseye/entrypoint.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
CLI_EXECUTABLES = [
1313
"dogecoind",
14-
"dogecoin-qt",
1514
"dogecoin-cli",
1615
"dogecoin-tx",
1716
]
@@ -53,7 +52,7 @@ def executable_options(executable):
5352
command_arguments = [executable, "-help"]
5453

5554
#`-help-debug` display extra flag in help menu for dogecoind & qt
56-
if executable in ["dogecoind", "dogecoin-qt"]:
55+
if executable == "dogecoind":
5756
command_arguments.append("-help-debug")
5857

5958
help_options = get_help(command_arguments)
@@ -127,7 +126,7 @@ def run_executable(executable, executable_args):
127126
to manage a single process in a container & more predictive
128127
signal handling.
129128
"""
130-
if executable in ["dogecoind", "dogecoin-qt"]:
129+
if executable == "dogecoind":
131130
executable_args.append("-printtoconsole")
132131

133132
#Switch process from root to user.

0 commit comments

Comments
 (0)