ht-docker-clickhouse/Dockerfile

12 lines
310 B
Docker
Raw Normal View History

2022-06-16 14:12:16 +00:00
FROM yandex/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