From c2414820b005dbe4fe382fdbcebdc08cd8d89f3b Mon Sep 17 00:00:00 2001 From: Cedric Verstraeten Date: Tue, 31 Jan 2023 21:49:45 +0100 Subject: [PATCH] upgrade to node14 --- Dockerfile-armv6 | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Dockerfile-armv6 b/Dockerfile-armv6 index 22f3792..713494c 100644 --- a/Dockerfile-armv6 +++ b/Dockerfile-armv6 @@ -7,6 +7,14 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y wget build-essent cmake wget dh-autoreconf autotools-dev autoconf automake gcc \ build-essential libtool make ca-certificates nasm tar unzip wget pkg-config + +######################## +# Download Yarn + +RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \ + apt-get install -y nodejs && \ + npm install -g yarn + ############################# # Static build x264 @@ -31,11 +39,4 @@ RUN git clone https://github.com/FFmpeg/FFmpeg && \ --enable-static --disable-shared && \ make -j8 && \ make install && \ - cd .. && rm -rf FFmpeg - -######################## -# Download Yarn - -RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && \ - apt-get install -y nodejs && \ - npm install -g yarn \ No newline at end of file + cd .. && rm -rf FFmpeg \ No newline at end of file