File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -72,8 +72,7 @@ COPY --from=verify /verify/dogecoin.tar.gz ./
72
72
# Move downloaded binaries and man pages in the container system.
73
73
# Setuid on binaries with $USER rights, to limit root usage.
74
74
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/ \
77
76
&& chown ${USER}:${USER} /usr/local/bin/dogecoin* \
78
77
&& chmod 4555 /usr/local/bin/dogecoin* \
79
78
&& rm -rf *
Original file line number Diff line number Diff line change 11
11
12
12
CLI_EXECUTABLES = [
13
13
"dogecoind" ,
14
- "dogecoin-qt" ,
15
14
"dogecoin-cli" ,
16
15
"dogecoin-tx" ,
17
16
]
@@ -53,7 +52,7 @@ def executable_options(executable):
53
52
command_arguments = [executable , "-help" ]
54
53
55
54
#`-help-debug` display extra flag in help menu for dogecoind & qt
56
- if executable in [ "dogecoind" , "dogecoin-qt" ] :
55
+ if executable == "dogecoind" :
57
56
command_arguments .append ("-help-debug" )
58
57
59
58
help_options = get_help (command_arguments )
@@ -127,7 +126,7 @@ def run_executable(executable, executable_args):
127
126
to manage a single process in a container & more predictive
128
127
signal handling.
129
128
"""
130
- if executable in [ "dogecoind" , "dogecoin-qt" ] :
129
+ if executable == "dogecoind" :
131
130
executable_args .append ("-printtoconsole" )
132
131
133
132
#Switch process from root to user.
You can’t perform that action at this time.
0 commit comments