mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
27 lines
673 B
Docker
27 lines
673 B
Docker
# rebuild in #33610
|
|
# docker build -t clickhouse/stress-test .
|
|
ARG FROM_TAG=latest
|
|
FROM clickhouse/stateful-test:$FROM_TAG
|
|
|
|
RUN apt-get update -y \
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install --yes --no-install-recommends \
|
|
bash \
|
|
tzdata \
|
|
parallel \
|
|
expect \
|
|
python3 \
|
|
python3-lxml \
|
|
python3-termcolor \
|
|
python3-requests \
|
|
curl \
|
|
sudo \
|
|
openssl \
|
|
netcat-openbsd \
|
|
brotli \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
|
|
|
ENV EXPORT_S3_STORAGE_POLICIES=1
|
|
|