mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 12:44:42 +00:00
2d7cb03120
Since for dowloading some of files wget logging may take 50% of overall log [1]. [1]: https://clickhouse-builds.s3.yandex.net/14315/c32ff4c98cb3b83a12f945eadd180415b7a3b269/clickhouse_build_check/build_log_761119955_1598923036.txt
40 lines
1.3 KiB
Docker
40 lines
1.3 KiB
Docker
# docker build -t yandex/clickhouse-stateless-test .
|
|
FROM yandex/clickhouse-test-base
|
|
|
|
ARG odbc_driver_url="https://github.com/ClickHouse/clickhouse-odbc/releases/download/v1.1.4.20200302/clickhouse-odbc-1.1.4-Linux.tar.gz"
|
|
|
|
RUN apt-get update -y \
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install --yes --no-install-recommends \
|
|
brotli \
|
|
expect \
|
|
lsof \
|
|
ncdu \
|
|
netcat-openbsd \
|
|
openssl \
|
|
python \
|
|
python-lxml \
|
|
python-requests \
|
|
python-termcolor \
|
|
qemu-user-static \
|
|
sudo \
|
|
telnet \
|
|
tree \
|
|
unixodbc \
|
|
wget \
|
|
zookeeper \
|
|
zookeeperd
|
|
|
|
RUN mkdir -p /tmp/clickhouse-odbc-tmp \
|
|
&& wget -nv -O - ${odbc_driver_url} | tar --strip-components=1 -xz -C /tmp/clickhouse-odbc-tmp \
|
|
&& cp /tmp/clickhouse-odbc-tmp/lib64/*.so /usr/local/lib/ \
|
|
&& odbcinst -i -d -f /tmp/clickhouse-odbc-tmp/share/doc/clickhouse-odbc/config/odbcinst.ini.sample \
|
|
&& odbcinst -i -s -l -f /tmp/clickhouse-odbc-tmp/share/doc/clickhouse-odbc/config/odbc.ini.sample \
|
|
&& rm -rf /tmp/clickhouse-odbc-tmp
|
|
|
|
ENV TZ=Europe/Moscow
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
COPY run.sh /
|
|
CMD ["/bin/bash", "/run.sh"]
|