From 9d60ad8f715f8ad929e1dc733c3b0830a2b12da2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 30 Dec 2022 23:45:40 +0800 Subject: [PATCH] use ubuntu nodejs (not sure if anything is actually still using it) --- docker/02-apt-get-install.sh | 1 + docker/03-custom-install.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/02-apt-get-install.sh b/docker/02-apt-get-install.sh index dd2dff7c..50f463a3 100755 --- a/docker/02-apt-get-install.sh +++ b/docker/02-apt-get-install.sh @@ -133,6 +133,7 @@ apt-get install -y \ mono-mcs \ nettle-dev \ ninja-build \ + nodejs \ openjdk-8-jdk \ python-mpltoolkits.basemap \ python3-matplotlib \ diff --git a/docker/03-custom-install.sh b/docker/03-custom-install.sh index a962153c..e268d5ea 100755 --- a/docker/03-custom-install.sh +++ b/docker/03-custom-install.sh @@ -41,8 +41,8 @@ update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 #update-alternatives --install "/usr/bin/opt" "opt" "/usr/bin/opt-9" 50 # nodejs 10 (nodejs8 in bionic needs conflicting libssl10-dev) -curl -sL https://deb.nodesource.com/setup_10.x | bash - -apt-get install -y nodejs +#curl -sL https://deb.nodesource.com/setup_10.x | bash - +#apt-get install -y nodejs # install ocilib dependencies then build and install ocilib cd /tmp \