2024-06-14 23:30:00 +00:00
|
|
|
FROM clickhouse/clickhouse-server
|
2024-05-26 17:34:00 +00:00
|
|
|
|
|
|
|
# Install Node.js and ClickHouse
|
2022-06-16 14:53:11 +00:00
|
|
|
RUN apt-get update \
|
2024-05-26 17:34:00 +00:00
|
|
|
&& apt-get install -y curl gnupg2 \
|
|
|
|
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
2022-06-16 14:53:11 +00:00
|
|
|
&& apt-get update \
|
2024-05-26 17:34:00 +00:00
|
|
|
&& apt-get install -y nodejs
|
|
|
|
|
|
|
|
# Verify Node.js and npm installation
|
2022-06-16 14:39:18 +00:00
|
|
|
RUN node -v && npm -v
|