ClickHouse/docker/test/stateful/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
366 B
Docker
Raw Normal View History

2023-02-28 19:20:04 +00:00
# rebuild in #47031
2021-09-06 11:33:39 +00:00
# docker build -t clickhouse/stateful-test .
ARG FROM_TAG=latest
FROM clickhouse/stateless-test:$FROM_TAG
2019-01-21 08:46:28 +00:00
RUN apt-get update -y \
&& env DEBIAN_FRONTEND=noninteractive \
apt-get install --yes --no-install-recommends \
2022-07-18 15:20:09 +00:00
nodejs \
npm \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*