From a998dbca722f89bf81c754fcbf8f1bc625ae2f63 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sun, 26 May 2024 19:34:00 +0200 Subject: [PATCH] fix(core): update --- Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f0b7f84..41e532a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,11 @@ FROM yandex/clickhouse-server + +# Install Node.js and ClickHouse RUN apt-get update \ - && apt-get install curl -y \ - && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ + && apt-get install -y curl gnupg2 \ + && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ && apt-get update \ - && apt-get install -y nodejs + && apt-get install -y nodejs + +# Verify Node.js and npm installation RUN node -v && npm -v