From 97af45480680fa28b5bbf969168e80d73a972baa Mon Sep 17 00:00:00 2001 From: Rene Glembotzky Date: Sat, 4 Nov 2023 13:10:56 +0100 Subject: [PATCH] Update install.md Update Node.js installation --- content/en/admin/install.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/en/admin/install.md b/content/en/admin/install.md index bffc3227..78446349 100644 --- a/content/en/admin/install.md +++ b/content/en/admin/install.md @@ -26,7 +26,11 @@ apt install -y curl wget gnupg apt-transport-https lsb-release ca-certificates #### Node.js {#node-js} ```bash -curl -sL https://deb.nodesource.com/setup_16.x | bash - +mkdir -p /etc/apt/keyrings +curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg +NODE_MAJOR=16 +apt-get update +apt-get install nodejs -y ``` #### PostgreSQL {#postgresql}