diff --git a/lbrycrd/Dockerfile b/lbrycrd/Dockerfile index 9d8d620..1f2fd4a 100644 --- a/lbrycrd/Dockerfile +++ b/lbrycrd/Dockerfile @@ -1,4 +1,4 @@ -## This base image is for running latest lbrycrdd +---quiet## This base image is for running latest lbrycrdd # For some reason I may switch this image over to Alpine when I can RCA why it won't start. FROM ubuntu:18.04 MAINTAINER chamunks [at] gmail [dot] com @@ -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 --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 && \ +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 && \