mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
30 lines
891 B
Docker
30 lines
891 B
Docker
FROM ubuntu:18.10
|
|
|
|
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
|
|
COPY log_queries.xml /etc/clickhouse-server/users.d/log_queries.xml
|
|
|
|
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; \
|
|
service clickhouse-server start && sleep 1 && ./stress --output-folder test_output
|