fix(core): update

This commit is contained in:
Philipp Kunz 2022-06-16 16:53:11 +02:00
parent ed6dc799ad
commit 1eb8c28525

View File

@ -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