2 Commits

Author SHA1 Message Date
5854225108 1.0.15
All checks were successful
Docker (tags) / security (push) Successful in 34s
Docker (tags) / test (push) Successful in 45s
Docker (tags) / metadata (push) Successful in 5s
Docker (tags) / release (push) Successful in 2m12s
2024-05-26 19:34:01 +02:00
a998dbca72 fix(core): update 2024-05-26 19:34:00 +02:00
2 changed files with 8 additions and 4 deletions

View File

@ -1,7 +1,11 @@
FROM yandex/clickhouse-server FROM yandex/clickhouse-server
# Install Node.js and ClickHouse
RUN apt-get update \ RUN apt-get update \
&& apt-get install curl -y \ && apt-get install -y curl gnupg2 \
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get update \ && apt-get update \
&& apt-get install -y nodejs && apt-get install -y nodejs
# Verify Node.js and npm installation
RUN node -v && npm -v RUN node -v && npm -v

View File

@ -1,7 +1,7 @@
{ {
"name": "ht-docker-clickhouse", "name": "ht-docker-clickhouse",
"private": true, "private": true,
"version": "1.0.14", "version": "1.0.15",
"description": "chrome for docker", "description": "chrome for docker",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {