diff --git a/docker/Dockerfile b/docker/Dockerfile index 9fee9284..a9af06f6 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -30,9 +30,10 @@ RUN mkdir -p /config && \ aria2c --version && \ # Install phantomjs if using x86_64, ensure it is properly installed if [[ $(uname -m) == "x86_64" ]]; then \ + echo "installing phantomjs" && \ apk add --no-cache gcompat && \ cd /defaults && \ - tar -xzf phantomjs-2.1.1-linux-x86_64.tar.bz2 && \ + tar -xj phantomjs-2.1.1-linux-x86_64.tar.bz2 && \ mv /defaults/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/share/phantomjs && \ rm -rf /defaults/phantomjs-2.1.1-linux-x86_64 && \ rm phantomjs-2.1.1-linux-x86_64.tar.bz2 && \ diff --git a/docker/Dockerfile.gui b/docker/Dockerfile.gui index aeb9534e..11343918 100644 --- a/docker/Dockerfile.gui +++ b/docker/Dockerfile.gui @@ -51,8 +51,9 @@ RUN mkdir -p /config && \ ffmpeg -version && \ # Install phantomjs if using x86_64, ensure it is properly installed if [[ $(uname -m) == "x86_64" ]]; then \ + echo "installing phantomjs" && \ cd /defaults && \ - tar -xzf phantomjs-2.1.1-linux-x86_64.tar.bz2 && \ + tar -xvf phantomjs-2.1.1-linux-x86_64.tar.bz2 && \ mv /defaults/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/bin/phantomjs && \ rm -rf /defaults/phantomjs-2.1.1-linux-x86_64 && \ rm phantomjs-2.1.1-linux-x86_64.tar.bz2 && \ diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index bdf9ee1b..88b5c6c4 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -54,8 +54,9 @@ RUN mkdir -p /config && \ ffmpeg -version && \ # Install phantomjs if using x86_64, ensure it is properly installed if [[ $(uname -m) == "x86_64" ]]; then \ + echo "installing phantomjs" && \ cd /defaults && \ - tar -xzf phantomjs-2.1.1-linux-x86_64.tar.bz2 && \ + tar -xvf phantomjs-2.1.1-linux-x86_64.tar.bz2 && \ mv /defaults/phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/bin/phantomjs && \ rm -rf /defaults/phantomjs-2.1.1-linux-x86_64 && \ rm phantomjs-2.1.1-linux-x86_64.tar.bz2 && \