From a4cea3ee7e5a900c9a8a0ce9c688899cd88f4d31 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Sat, 9 Dec 2023 19:36:54 +0100 Subject: [PATCH] chore: update nodejs install script from deprecated version --- Dockerfile.e2e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.e2e b/Dockerfile.e2e index f7eba9f..969f29a 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -48,7 +48,7 @@ COPY --from=ruimarinho/bitcoin-core:0.21.1 /opt/bitcoin-*/bin /usr/local/bin ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && apt-get install -y curl/bullseye-backports gettext-base jq -RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs +RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh && chmod 500 nsolid_setup_deb.sh && ./nsolid_setup_deb.sh 20 && apt-get install nodejs -y RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* VOLUME /chainstate