From 5c5cd821133cb2bc87891bb68d271a6707ad3fb3 Mon Sep 17 00:00:00 2001 From: Leopere Date: Wed, 10 Oct 2018 20:24:51 -0400 Subject: [PATCH] New docker error from last change --- lbrycrd/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lbrycrd/Dockerfile b/lbrycrd/Dockerfile index fb33fda..0d8fb18 100644 --- a/lbrycrd/Dockerfile +++ b/lbrycrd/Dockerfile @@ -11,10 +11,10 @@ RUN adduser lbrycrdd --gecos GECOS --shell /bin/bash --disabled-password --home mkdir -p /etc/lbrycrdd && \ chown -R 1000:1000 /etc/lbrycrdd -RUN wget --quiet -O /usr/bin/debugpaste https://github.com/nixc-us/debugpaste-it/raw/master/bin/debugpaste_64 && \ +RUN wget -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 && \ +RUN wget -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 && \