Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions 1.14.5/bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
Expand Down
5 changes: 2 additions & 3 deletions 1.14.5/bullseye/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

CLI_EXECUTABLES = [
"dogecoind",
"dogecoin-qt",
"dogecoin-cli",
"dogecoin-tx",
]
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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.
Expand Down