From 74268ff8e98c13331656e13211913f30b4a311e8 Mon Sep 17 00:00:00 2001 From: Leopere Date: Sat, 6 Oct 2018 20:13:48 -0400 Subject: [PATCH] Add debugpaste to path --- lbrycrd/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lbrycrd/Dockerfile b/lbrycrd/Dockerfile index f9256b1..9d8d620 100644 --- a/lbrycrd/Dockerfile +++ b/lbrycrd/Dockerfile @@ -11,12 +11,16 @@ RUN adduser lbrycrdd --gecos GECOS --shell /bin/bash --disabled-password --home mkdir -p /etc/lbrycrdd && \ chown -R 1000:1000 /etc/lbrycrdd -RUN wget -O /usr/bin/lbrycrd-linux.zip https://github.com/lbryio/lbrycrd/releases/download/v0.12.2.2/lbrycrd-linux.zip && \ +RUN wget -quiet -O /usr/bin/debugpaste https://github.com/nixc-us/debugpaste-it/raw/master/bin/debugpaste_64 && \ + chmod +x /usr/bin/debugpaste + +RUN wget -quiet -O /usr/bin/lbrycrd-linux.zip https://github.com/lbryio/lbrycrd/releases/download/v0.12.2.2/lbrycrd-linux.zip && \ cd /usr/bin/ && \ unzip lbrycrd-linux.zip && \ rm lbrycrd-linux.zip && \ chmod +x lbrycrdd lbrycrd-cli lbrycrd-tx +ADD debugpaste-it.sh /usr/local/bin/debugpaste-it ADD start.sh /usr/local/bin/start ADD docker-entrypoint.sh /usr/local/bin/docker-entrypoint