ht-docker-clickhouse/Dockerfile

8 lines
231 B
Docker
Raw Normal View History

2022-06-16 14:12:16 +00:00
FROM yandex/clickhouse-server
2022-06-16 14:53:11 +00:00
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
2022-06-16 14:39:18 +00:00
RUN node -v && npm -v