Update Dockerfile

[*] Fixed issue with wget output command parameter
[*] Update to latest version of shaka-packager
This commit is contained in:
h1pp0 2024-06-08 12:35:35 -04:00 committed by GitHub
parent 7f522ebebb
commit f688a5f263
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -y \
unzip \ unzip \
wget wget
# Install Shaka Packager # 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 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 RUN chmod +x /usr/local/bin/shaka-packager
# Copy the current directory contents into the container at /app. # Copy the current directory contents into the container at /app.