12 lines
314 B
Docker
Raw Normal View History

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