mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
13 lines
366 B
Docker
13 lines
366 B
Docker
# rebuild in #47031
|
|
# docker build -t clickhouse/stateful-test .
|
|
ARG FROM_TAG=latest
|
|
FROM clickhouse/stateless-test:$FROM_TAG
|
|
|
|
RUN apt-get update -y \
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install --yes --no-install-recommends \
|
|
nodejs \
|
|
npm \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|