2021-09-06 11:33:39 +00:00
|
|
|
# docker build -t clickhouse/deb-builder .
|
2020-08-18 14:16:40 +00:00
|
|
|
FROM ubuntu:20.04
|
2018-10-04 17:07:00 +00:00
|
|
|
|
2021-11-25 16:30:39 +00:00
|
|
|
# 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
|
2020-08-17 20:33:50 +00:00
|
|
|
|
2021-11-25 16:30:39 +00:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=13
|
2021-08-23 08:22:39 +00:00
|
|
|
|
2020-08-25 03:11:01 +00:00
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install ca-certificates lsb-release wget gnupg apt-transport-https \
|
|
|
|
--yes --no-install-recommends --verbose-versions \
|
|
|
|
&& export LLVM_PUBKEY_HASH="bda960a8da687a275a2078d43c111d66b1c6a893a3275271beedf266c1ff4a0cdecb429c7a5cccf9f486ea7aa43fd27f" \
|
2020-09-01 07:08:54 +00:00
|
|
|
&& wget -nv -O /tmp/llvm-snapshot.gpg.key https://apt.llvm.org/llvm-snapshot.gpg.key \
|
2020-08-25 03:11:01 +00:00
|
|
|
&& 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')" \
|
2020-09-29 07:15:05 +00:00
|
|
|
&& echo "deb [trusted=yes] http://apt.llvm.org/${CODENAME}/ llvm-toolchain-${CODENAME}-${LLVM_VERSION} main" >> \
|
2020-08-25 03:11:01 +00:00
|
|
|
/etc/apt/sources.list
|
2020-04-20 20:04:35 +00:00
|
|
|
|
2020-06-29 13:13:20 +00:00
|
|
|
# initial packages
|
2020-08-25 03:11:01 +00:00
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install \
|
|
|
|
bash \
|
|
|
|
fakeroot \
|
|
|
|
ccache \
|
|
|
|
curl \
|
|
|
|
software-properties-common \
|
|
|
|
--yes --no-install-recommends
|
2019-09-06 19:19:41 +00:00
|
|
|
|
2021-12-23 23:52:14 +00:00
|
|
|
# Architecture of the image when BuildKit/buildx is used
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
2020-09-14 12:24:38 +00:00
|
|
|
# Special dpkg-deb (https://github.com/ClickHouse-Extras/dpkg) version which is able
|
|
|
|
# to compress files using pigz (https://zlib.net/pigz/) instead of gzip.
|
|
|
|
# Significantly increase deb packaging speed and compatible with old systems
|
2021-12-23 23:52:14 +00:00
|
|
|
RUN arch=${TARGETARCH:-amd64} \
|
|
|
|
&& curl -Lo /usr/bin/dpkg-deb https://github.com/ClickHouse-Extras/dpkg/releases/download/1.21.1-clickhouse/dpkg-deb-${arch}
|
2020-09-14 12:24:38 +00:00
|
|
|
|
2020-08-25 03:11:01 +00:00
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install \
|
2021-04-02 13:35:42 +00:00
|
|
|
alien \
|
2021-09-06 22:08:57 +00:00
|
|
|
clang-${LLVM_VERSION} \
|
|
|
|
clang-tidy-${LLVM_VERSION} \
|
2021-04-02 13:35:42 +00:00
|
|
|
cmake \
|
|
|
|
debhelper \
|
|
|
|
devscripts \
|
|
|
|
gdb \
|
|
|
|
git \
|
|
|
|
gperf \
|
2021-09-06 22:08:57 +00:00
|
|
|
lld-${LLVM_VERSION} \
|
|
|
|
llvm-${LLVM_VERSION} \
|
|
|
|
llvm-${LLVM_VERSION}-dev \
|
2021-04-02 13:35:42 +00:00
|
|
|
moreutils \
|
2020-08-25 03:11:01 +00:00
|
|
|
ninja-build \
|
|
|
|
perl \
|
2021-04-02 13:35:42 +00:00
|
|
|
pigz \
|
|
|
|
pixz \
|
2020-08-25 03:11:01 +00:00
|
|
|
pkg-config \
|
|
|
|
tzdata \
|
|
|
|
--yes --no-install-recommends
|
2019-09-17 16:42:18 +00:00
|
|
|
|
2021-09-08 15:06:15 +00:00
|
|
|
# NOTE: Seems like gcc-11 is too new for ubuntu20 repository
|
|
|
|
RUN add-apt-repository ppa:ubuntu-toolchain-r/test --yes \
|
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get install gcc-11 g++-11 --yes
|
2020-09-09 10:51:01 +00:00
|
|
|
|
|
|
|
|
2021-12-08 21:52:00 +00:00
|
|
|
# These symlinks are required:
|
|
|
|
# /usr/bin/ld.lld: by gcc to find lld compiler
|
|
|
|
# /usr/bin/aarch64-linux-gnu-obj*: for debug symbols stripping
|
|
|
|
RUN ln -s /usr/bin/lld-${LLVM_VERSION} /usr/bin/ld.lld \
|
|
|
|
&& ln -sf /usr/lib/llvm-${LLVM_VERSION}/bin/llvm-objcopy /usr/bin/aarch64-linux-gnu-strip \
|
|
|
|
&& ln -sf /usr/lib/llvm-${LLVM_VERSION}/bin/llvm-objcopy /usr/bin/aarch64-linux-gnu-objcopy \
|
|
|
|
&& ln -sf /usr/lib/llvm-${LLVM_VERSION}/bin/llvm-objdump /usr/bin/aarch64-linux-gnu-objdump
|
|
|
|
|
2020-02-07 20:59:51 +00:00
|
|
|
|
2019-04-25 12:29:28 +00:00
|
|
|
COPY build.sh /
|
2019-09-17 14:24:45 +00:00
|
|
|
|
2019-04-25 12:29:28 +00:00
|
|
|
CMD ["/bin/bash", "/build.sh"]
|