mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
32 lines
741 B
Docker
32 lines
741 B
Docker
# docker build -t clickhouse/stress-test .
|
|
FROM 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 \
|
|
python3 \
|
|
python3-lxml \
|
|
python3-termcolor \
|
|
python3-requests \
|
|
curl \
|
|
sudo \
|
|
openssl \
|
|
netcat-openbsd \
|
|
telnet \
|
|
llvm-9 \
|
|
brotli
|
|
|
|
COPY ./stress /stress
|
|
COPY run.sh /
|
|
|
|
ENV DATASETS="hits visits"
|
|
ENV S3_URL="https://clickhouse-datasets.s3.yandex.net"
|
|
|
|
CMD ["/bin/bash", "/run.sh"]
|