From 1fa94cbfad9d0e98d5a8ea863a0c606235707686 Mon Sep 17 00:00:00 2001 From: advplyr Date: Fri, 7 Oct 2022 16:21:47 -0500 Subject: [PATCH] Update tone to v0.1.1 --- Dockerfile | 2 +- build/debian/DEBIAN/preinst | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ddafa0a4..f1e9452b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN npm ci && npm cache clean --force RUN npm run generate ### STAGE 1: Build server ### -FROM sandreas/tone:v0.0.9 AS tone +FROM sandreas/tone:v0.1.1 AS tone FROM node:16-alpine ENV NODE_ENV=production diff --git a/build/debian/DEBIAN/preinst b/build/debian/DEBIAN/preinst index 8c2b1880..8a8fc0df 100644 --- a/build/debian/DEBIAN/preinst +++ b/build/debian/DEBIAN/preinst @@ -50,7 +50,7 @@ install_ffmpeg() { echo "Starting FFMPEG Install" WGET="wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz" - WGET_TONE="wget https://github.com/sandreas/tone/releases/download/v0.0.9/tone-0.0.9-linux-x64.tar.gz" + WGET_TONE="wget https://github.com/sandreas/tone/releases/download/v0.1.1/tone-0.1.1-linux-x64.tar.gz" if ! cd "$FFMPEG_INSTALL_DIR"; then echo "Creating ffmpeg install dir at $FFMPEG_INSTALL_DIR" @@ -66,8 +66,8 @@ install_ffmpeg() { # Temp downloading tone library to the ffmpeg dir echo "Getting tone.." $WGET_TONE - tar xvf tone-0.0.9-linux-x64.tar.gz --strip-components=1 - rm tone-0.0.9-linux-x64.tar.gz + tar xvf tone-0.1.1-linux-x64.tar.gz --strip-components=1 + rm tone-0.1.1-linux-x64.tar.gz echo "Good to go on Ffmpeg (& tone)... hopefully" }