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-09-06 22:08:57 +00:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=13
|
2020-08-17 20:33:50 +00:00
|
|
|
|
2021-08-23 08:22:39 +00:00
|
|
|
RUN sed -i 's|http://archive|http://ru.archive|g' /etc/apt/sources.list
|
|
|
|
|
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
|
|
|
|
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-07-19 08:29:17 +00:00
|
|
|
RUN curl -O https://clickhouse-datasets.s3.yandex.net/utils/1/dpkg-deb \
|
2020-09-14 12:24:38 +00:00
|
|
|
&& chmod +x dpkg-deb \
|
|
|
|
&& cp dpkg-deb /usr/bin
|
|
|
|
|
2020-08-25 03:11:01 +00:00
|
|
|
# Libraries from OS are only needed to test the "unbundled" build (this is not used in production).
|
|
|
|
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
|
|
|
|
|
|
|
|
2020-03-03 12:32:54 +00:00
|
|
|
# This symlink required by gcc to find lld compiler
|
2020-09-29 07:15:05 +00:00
|
|
|
RUN ln -s /usr/bin/lld-${LLVM_VERSION} /usr/bin/ld.lld
|
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"]
|