From 4fd7993456e4c68528086b40c9e0850e4bbb66ee Mon Sep 17 00:00:00 2001 From: Leopere Date: Sun, 4 Nov 2018 12:09:45 -0500 Subject: [PATCH] reverted to original unzip function --- chainquery/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chainquery/Dockerfile b/chainquery/Dockerfile index 58723dd..0d3b50d 100644 --- a/chainquery/Dockerfile +++ b/chainquery/Dockerfile @@ -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.