This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 242022d2 Update to node.js 18
242022d2 is described below
commit 242022d22b87f4c41e5fc1cf7cb6b566bd14531f
Author: Sebb <[email protected]>
AuthorDate: Thu Dec 14 00:18:53 2023 +0000
Update to node.js 18
---
Dockerfile | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Dockerfile b/Dockerfile
index a772245e..89a8b707 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,11 @@ ENV GEM_HOME="/srv/gems" \
RUN apt-get update && \
apt-get install -y curl software-properties-common apt-utils && \
- curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
+ mkdir -p /etc/apt/keyrings && \
+ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | \
+ gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
+ echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg]
https://deb.nodesource.com/node_18.x nodistro main" > \
+ /etc/apt/sources.list.d/nodesource.list && \
echo "deb http://opensource.wandisco.com/ubuntu bionic svn110" > \
/etc/apt/sources.list.d/subversion.list && \
curl -sL http://opensource.wandisco.com/wandisco-debian-new.gpg | \