From af5fe587b621b28670471ca5c19f89d90bd227a9 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Wed, 11 Jun 2025 22:41:51 -0700 Subject: [PATCH] hmm --- docker/Dockerfile | 3 ++- docker/Dockerfile.gui | 3 ++- docker/Dockerfile.ubuntu | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) 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 && \