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 && \