ClickHouse/docker/test/stress/Dockerfile

30 lines
699 B
Docker
Raw Normal View History

2019-06-25 12:04:05 +00:00
# docker build -t yandex/clickhouse-stress-test .
FROM yandex/clickhouse-stateful-test
RUN apt-get update -y \
&& env DEBIAN_FRONTEND=noninteractive \
apt-get install --yes --no-install-recommends \
bash \
tzdata \
fakeroot \
debhelper \
parallel \
expect \
2020-10-02 16:54:07 +00:00
python3 \
python3-lxml \
python3-termcolor \
python3-requests \
curl \
sudo \
openssl \
netcat-openbsd \
2019-03-28 09:29:48 +00:00
telnet \
llvm-9 \
brotli
COPY ./stress /stress
COPY run.sh /
2019-06-25 12:04:05 +00:00
ENV DATASETS="hits visits"
CMD ["/bin/bash", "/run.sh"]