From e7e203fc7e02a6ecded5af0f70f0bca43a28f70f Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Wed, 20 Sep 2017 00:06:32 +0100 Subject: [PATCH] Print debug logs during build --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ab10a5d..bb0c5b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,8 @@ WORKDIR /tmp ARG PLEX_VER -RUN wget http://ftp.de.debian.org/debian/pool/main/g/gcc-6/libstdc++6_6.3.0-18_amd64.deb \ +RUN set -ax \ + && wget http://ftp.de.debian.org/debian/pool/main/g/gcc-6/libstdc++6_6.3.0-18_amd64.deb \ && wget http://ftp.de.debian.org/debian/pool/main/g/gcc-6/libgcc1_6.3.0-18_amd64.deb \ && dpkg-deb -x libstdc++6*.deb . \ && dpkg-deb -x libgcc1*.deb . \