--quiet instead of -quiet
This commit is contained in:
parent
5e4b4f7ac0
commit
cf5a77619f
1 changed files with 3 additions and 3 deletions
|
@ -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 && \
|
||||
|
|
Loading…
Reference in a new issue