ClickHouse/docker/test/stateful/Dockerfile

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

20 lines
489 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 \
2020-10-02 16:54:07 +00:00
python3-requests \
2022-07-18 15:20:09 +00:00
nodejs \
npm \
&& apt-get clean
2019-01-21 08:46:28 +00:00
# The following is already done in clickhouse/stateless-test
# RUN npm install -g azurite
# RUN npm install tslib
2022-07-18 15:20:09 +00:00
2020-07-08 08:41:39 +00:00
COPY run.sh /
CMD ["/bin/bash", "/run.sh"]