From 1eb8c28525064dc287e7a0b744b5b379fc381c01 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 16 Jun 2022 16:53:11 +0200 Subject: [PATCH] fix(core): update --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32129cc..f0b7f84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM yandex/clickhouse-server -RUN apt-get update && apt-get upgrade \ - && curl -fsSL https://deb.nodesource.com/setup_18.x | -E bash - \ - && apt-get install nodejs +RUN apt-get update \ + && apt-get install curl -y \ + && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ + && apt-get update \ + && apt-get install -y nodejs RUN node -v && npm -v