From f688a5f263ff6d255da7a04b7189191bec98ac3d Mon Sep 17 00:00:00 2001 From: h1pp0 <56662889+thebetauser@users.noreply.github.com> Date: Sat, 8 Jun 2024 12:35:35 -0400 Subject: [PATCH] Update Dockerfile [*] Fixed issue with wget output command parameter [*] Update to latest version of shaka-packager --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fbfb367..edc4ca5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -y \ unzip \ wget -# Install Shaka Packager -RUN wget https://github.com/shaka-project/shaka-packager/releases/download/v2.6.1/packager-linux-x64 -o /usr/local/bin/shaka-packager +# Install Shaka Packager. +RUN wget https://github.com/shaka-project/shaka-packager/releases/download/v3.2.0/packager-linux-x64 -O /usr/local/bin/shaka-packager RUN chmod +x /usr/local/bin/shaka-packager # Copy the current directory contents into the container at /app.