ClickHouse/docker/test/fasttest/Dockerfile

48 lines
1.6 KiB
Docker
Raw Normal View History

# rebuild in #33610
2021-09-06 11:33:39 +00:00
# docker build -t clickhouse/fasttest .
ARG FROM_TAG=latest
FROM clickhouse/test-util:$FROM_TAG
2020-07-08 13:06:35 +00:00
RUN apt-get update \
&& apt-get install \
brotli \
expect \
file \
2021-04-01 20:28:53 +00:00
lsof \
psmisc \
2020-10-02 16:54:07 +00:00
python3 \
python3-lxml \
2021-04-01 20:28:53 +00:00
python3-pip \
2020-10-02 16:54:07 +00:00
python3-requests \
python3-termcolor \
unixodbc \
2022-08-11 01:29:46 +00:00
pv \
--yes --no-install-recommends
2020-07-08 13:06:35 +00:00
2022-09-13 20:09:39 +00:00
# Install CMake 3.20+ for Rust compilation
RUN apt purge cmake --yes
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
RUN apt-add-repository 'deb https://apt.kitware.com/ubuntu/ focal main'
RUN apt update && apt install cmake --yes
RUN pip3 install numpy scipy pandas Jinja2
2020-10-15 19:54:17 +00:00
ARG odbc_driver_url="https://github.com/ClickHouse/clickhouse-odbc/releases/download/v1.1.4.20200302/clickhouse-odbc-1.1.4-Linux.tar.gz"
2020-07-08 13:06:35 +00:00
RUN mkdir -p /tmp/clickhouse-odbc-tmp \
&& wget -nv -O - ${odbc_driver_url} | tar --strip-components=1 -xz -C /tmp/clickhouse-odbc-tmp \
2020-07-08 13:06:35 +00:00
&& 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
2022-03-13 01:03:06 +00:00
ENV TZ=Europe/Moscow
2020-07-08 13:06:35 +00:00
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
ENV COMMIT_SHA=''
ENV PULL_REQUEST_NUMBER=''
ENV COPY_CLICKHOUSE_BINARY_TO_OUTPUT=0
2020-07-08 13:06:35 +00:00
COPY run.sh /
CMD ["/bin/bash", "/run.sh"]