2019-01-09 16:04:39 +00:00
|
|
|
FROM ubuntu:18.10
|
2018-10-22 14:31:25 +00:00
|
|
|
|
|
|
|
RUN apt-get update -y \
|
|
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
|
|
apt-get install --yes --no-install-recommends \
|
|
|
|
bash \
|
|
|
|
tzdata \
|
|
|
|
fakeroot \
|
|
|
|
debhelper \
|
|
|
|
parallel \
|
|
|
|
expect \
|
|
|
|
python \
|
|
|
|
python-lxml \
|
|
|
|
python-termcolor \
|
|
|
|
python-requests \
|
|
|
|
curl \
|
|
|
|
sudo \
|
|
|
|
openssl \
|
|
|
|
netcat-openbsd \
|
|
|
|
telnet
|
|
|
|
|
|
|
|
COPY ./stress /stress
|
2019-01-09 16:04:39 +00:00
|
|
|
COPY log_queries.xml /etc/clickhouse-server/users.d/log_queries.xml
|
2018-10-22 14:31:25 +00:00
|
|
|
|
|
|
|
CMD dpkg -i package_folder/clickhouse-common-static_*.deb; \
|
|
|
|
dpkg -i package_folder/clickhouse-server_*.deb; \
|
|
|
|
dpkg -i package_folder/clickhouse-client_*.deb; \
|
|
|
|
dpkg -i package_folder/clickhouse-test_*.deb; \
|
2018-11-21 12:05:31 +00:00
|
|
|
service clickhouse-server start && sleep 1 && ./stress --output-folder test_output
|