6 lines
193 B
Docker
6 lines
193 B
Docker
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 node -v && npm -v
|