From 4f5f8e8cbf1d0cfd5dc6902d0efbb4cbec6af8a1 Mon Sep 17 00:00:00 2001 From: Erik Huelsmann Date: Fri, 13 Aug 2021 23:55:06 +0200 Subject: [PATCH] Print commands as they are executed (debugging purposes) --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 23ec90c..1dd7b99 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,8 @@ ARG ARTIFACT_LOCATION="https://download.ledgersmb.org/f/$LSMB_DL_DIR/$LSMB_VERSI # Install Locale::Codes Locale::Country Locale::Language from CPAN to suppress # deprecation-as-core-module warning -RUN echo -n "APT::Install-Recommends \"0\";\nAPT::Install-Suggests \"0\";\n" >> /etc/apt/apt.conf && \ +RUN set -x ; \ + echo -n "APT::Install-Recommends \"0\";\nAPT::Install-Suggests \"0\";\n" >> /etc/apt/apt.conf && \ mkdir -p /usr/share/man/man1/ && \ mkdir -p /usr/share/man/man2/ && \ mkdir -p /usr/share/man/man3/ && \