reverted to original unzip function

This commit is contained in:
Leopere 2018-11-04 12:09:45 -05:00
parent 5c6e5653c5
commit 4fd7993456

View file

@ -12,7 +12,9 @@ RUN curl -L -o /download/chainquery.zip $(curl -s https://api.github.com/repos/l
## I really want to use this instead of all the curl stuff at one point.
# ADD --chown=1000:1000 https://github.com/lbryio/chainquery/releases/download/latest/chainquery_latest_Linux_x86_64.zip /download
RUN unzip /download/chainquery.zip -d /download/ && \
RUN cd /download && \
ls -lAh /download && pwd && \
unzip chainquery.zip && \
rm chainquery.zip
## Switch to Alpine eventually we might need to compile in Alpine for this.