ClickHouse/docker/test/integration/runner/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

141 lines
3.8 KiB
Docker
Raw Normal View History

2021-09-06 11:33:39 +00:00
# docker build -t clickhouse/integration-tests-runner .
2023-06-21 14:33:43 +00:00
FROM ubuntu:22.04
# ARG for quick switch to a given ubuntu mirror
ARG apt_archive="http://archive.ubuntu.com"
2022-06-28 17:35:20 +00:00
RUN sed -i "s|http://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
2021-08-23 18:01:19 +00:00
2019-05-21 06:17:46 +00:00
RUN apt-get update \
&& env DEBIAN_FRONTEND=noninteractive apt-get install --yes \
2023-01-07 00:45:54 +00:00
adduser \
ca-certificates \
bash \
btrfs-progs \
e2fsprogs \
iptables \
xfsprogs \
tar \
pigz \
wget \
git \
iproute2 \
cgroupfs-mount \
2020-10-02 16:54:07 +00:00
python3-pip \
2018-12-10 09:40:57 +00:00
tzdata \
2019-01-30 09:43:00 +00:00
libicu-dev \
bsdutils \
curl \
2020-10-02 16:54:07 +00:00
python3-pika \
liblua5.1-dev \
luajit \
libssl-dev \
libcurl4-openssl-dev \
2019-12-13 13:56:53 +00:00
gdb \
default-jdk \
software-properties-common \
libkrb5-dev \
krb5-user \
2021-03-12 09:05:40 +00:00
g++ \
2019-05-21 06:17:46 +00:00
&& rm -rf \
/var/lib/apt/lists/* \
/var/cache/debconf \
/tmp/* \
&& apt-get clean
2022-03-14 12:46:45 +00:00
ENV TZ=Etc/UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
ENV DOCKER_CHANNEL stable
2023-07-03 16:14:02 +00:00
# Unpin the docker version after the release 24.0.3 is released
# https://github.com/moby/moby/issues/45770#issuecomment-1618255130
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
&& add-apt-repository "deb https://download.docker.com/linux/ubuntu $(lsb_release -c -s) ${DOCKER_CHANNEL}" \
&& apt-get update \
&& env DEBIAN_FRONTEND=noninteractive apt-get install --yes \
2023-07-03 16:14:02 +00:00
docker-ce='5:23.*' \
&& rm -rf \
/var/lib/apt/lists/* \
/var/cache/debconf \
/tmp/* \
2023-06-21 14:33:43 +00:00
&& apt-get clean \
&& dockerd --version; docker --version
RUN python3 -m pip install --no-cache-dir \
2020-10-16 15:27:22 +00:00
PyMySQL \
2023-06-21 14:33:43 +00:00
aerospike==11.1.0 \
2022-05-16 10:03:28 +00:00
asyncio \
2023-06-21 14:33:43 +00:00
avro==1.10.2 \
azure-storage-blob \
2020-10-16 15:27:22 +00:00
cassandra-driver \
2023-06-21 14:33:43 +00:00
confluent-kafka==1.9.2 \
delta-spark==2.3.0 \
2021-01-27 09:50:11 +00:00
dict2xml \
dicttoxml \
2020-10-16 15:27:22 +00:00
docker \
docker-compose==1.29.2 \
2020-10-16 15:27:22 +00:00
grpcio \
grpcio-tools \
kafka-python \
kazoo \
lz4 \
2023-06-21 14:33:43 +00:00
meilisearch==0.18.3 \
2020-10-16 15:27:22 +00:00
minio \
2022-05-16 10:03:28 +00:00
nats-py \
2020-10-16 15:27:22 +00:00
protobuf \
2023-06-21 14:33:43 +00:00
psycopg2-binary==2.9.6 \
pyhdfs \
2021-12-10 14:58:17 +00:00
pymongo==3.11.0 \
2023-06-21 14:33:43 +00:00
pyspark==3.3.2 \
2020-10-16 15:27:22 +00:00
pytest \
pytest-order==1.0.0 \
2022-12-29 14:24:23 +00:00
pytest-random \
2021-07-12 08:32:20 +00:00
pytest-repeat \
2023-06-21 14:33:43 +00:00
pytest-timeout \
pytest-xdist \
2021-08-24 14:09:10 +00:00
pytz \
2023-08-01 13:47:35 +00:00
pyyaml==5.3.1 \
2020-10-16 15:27:22 +00:00
redis \
2021-05-22 20:33:15 +00:00
requests-kerberos \
2023-06-21 14:33:43 +00:00
tzlocal==2.1 \
retry \
2023-06-21 14:33:43 +00:00
urllib3
2023-06-21 14:33:43 +00:00
# Hudi supports only spark 3.3.*, not 3.4
RUN curl -fsSL -O https://dlcdn.apache.org/spark/spark-3.3.2/spark-3.3.2-bin-hadoop3.tgz \
&& tar xzvf spark-3.3.2-bin-hadoop3.tgz -C / \
&& rm spark-3.3.2-bin-hadoop3.tgz
2023-04-13 14:56:11 +00:00
# download spark and packages
# if you change packages, don't forget to update them in tests/integration/helpers/cluster.py
RUN packages="org.apache.hudi:hudi-spark3.3-bundle_2.12:0.13.0,\
io.delta:delta-core_2.12:2.3.0,\
org.apache.iceberg:iceberg-spark-runtime-3.3_2.12:1.1.0" \
&& /spark-3.3.2-bin-hadoop3/bin/spark-shell --packages "$packages" > /dev/null \
&& find /root/.ivy2/ -name '*.jar' -exec ln -sf {} /spark-3.3.2-bin-hadoop3/jars/ \;
RUN set -x \
&& addgroup --system dockremap \
2023-06-21 14:33:43 +00:00
&& adduser --system dockremap \
&& adduser dockremap dockremap \
&& echo 'dockremap:165536:65536' >> /etc/subuid \
2023-06-21 14:33:43 +00:00
&& echo 'dockremap:165536:65536' >> /etc/subgid
COPY modprobe.sh /usr/local/bin/modprobe
COPY dockerd-entrypoint.sh /usr/local/bin/
COPY compose/ /compose/
COPY misc/ /misc/
# Same options as in test/base/Dockerfile
# (in case you need to override them in tests)
2023-08-04 21:26:52 +00:00
ENV TSAN_OPTIONS='halt_on_error=1 abort_on_error=1 history_size=7 memory_limit_mb=46080 second_deadlock_stack=1'
ENV UBSAN_OPTIONS='print_stacktrace=1'
ENV MSAN_OPTIONS='abort_on_error=1 poison_in_dtor=1'
EXPOSE 2375
ENTRYPOINT ["dockerd-entrypoint.sh"]
# To pass additional arguments (i.e. list of tests) use PYTEST_ADDOPTS
CMD ["sh", "-c", "pytest"]