mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
5a400c181b
In #61011 the whole toolchain installation had been removed from the base image to reduce image sizes, and this is a good thing indeed. However it also breaks the symbolizer for sanitizers, which makes stacktraces unreadable, so let's fix this by getting back llvm package, this should be OK, since it's size is not gigabytes, but only 48MiB (at least for llvm-14): # dpkg -L llvm-14| xargs file | grep -v directory | cut -d: -f1 | xargs du -sch | grep total 48M total Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
60 lines
2.1 KiB
Docker
60 lines
2.1 KiB
Docker
# docker build -t clickhouse/test-util .
|
|
FROM ubuntu:22.04
|
|
|
|
# ARG for quick switch to a given ubuntu mirror
|
|
ARG apt_archive="http://archive.ubuntu.com"
|
|
RUN sed -i "s|http://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=17
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install \
|
|
apt-transport-https \
|
|
apt-utils \
|
|
ca-certificates \
|
|
curl \
|
|
dnsutils \
|
|
gnupg \
|
|
iputils-ping \
|
|
lsb-release \
|
|
wget \
|
|
--yes --no-install-recommends --verbose-versions \
|
|
&& export LLVM_PUBKEY_HASH="bda960a8da687a275a2078d43c111d66b1c6a893a3275271beedf266c1ff4a0cdecb429c7a5cccf9f486ea7aa43fd27f" \
|
|
&& wget -nv -O /tmp/llvm-snapshot.gpg.key https://apt.llvm.org/llvm-snapshot.gpg.key \
|
|
&& echo "${LLVM_PUBKEY_HASH} /tmp/llvm-snapshot.gpg.key" | sha384sum -c \
|
|
&& apt-key add /tmp/llvm-snapshot.gpg.key \
|
|
&& export CODENAME="$(lsb_release --codename --short | tr 'A-Z' 'a-z')" \
|
|
&& echo "deb https://apt.llvm.org/${CODENAME}/ llvm-toolchain-${CODENAME}-${LLVM_VERSION} main" >> \
|
|
/etc/apt/sources.list \
|
|
&& apt-get update \
|
|
&& apt-get install --yes --no-install-recommends --verbose-versions llvm-${LLVM_VERSION} \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
|
|
|
# Install cmake 3.20+ for Rust support
|
|
# Used https://askubuntu.com/a/1157132 as reference
|
|
RUN curl -s https://apt.kitware.com/keys/kitware-archive-latest.asc | \
|
|
gpg --dearmor - > /etc/apt/trusted.gpg.d/kitware.gpg && \
|
|
echo "deb https://apt.kitware.com/ubuntu/ $(lsb_release -cs) main" >> /etc/apt/sources.list
|
|
|
|
# initial packages
|
|
RUN apt-get update \
|
|
&& apt-get install \
|
|
bash \
|
|
bsdmainutils \
|
|
build-essential \
|
|
gdb \
|
|
git \
|
|
gperf \
|
|
moreutils \
|
|
nasm \
|
|
pigz \
|
|
rename \
|
|
software-properties-common \
|
|
tzdata \
|
|
--yes --no-install-recommends \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
|
|
|
COPY process_functional_tests_result.py /
|