6 lines
193 B
Docker
Raw Normal View History

2022-06-16 16:12:16 +02:00
FROM yandex/clickhouse-server
2022-06-16 16:39:18 +02:00
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