ClickHouse/docker/packager/binary/Dockerfile

107 lines
3.6 KiB
Docker
Raw Normal View History

# docker build -t yandex/clickhouse-binary-builder .
2020-09-07 15:40:21 +00:00
FROM ubuntu:20.04
2020-09-24 16:26:04 +00:00
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=11
2020-04-20 20:04:35 +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" \
&& 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')" \
2020-09-29 07:15:05 +00:00
&& echo "deb [trusted=yes] http://apt.llvm.org/${CODENAME}/ llvm-toolchain-${CODENAME}-${LLVM_VERSION} main" >> \
/etc/apt/sources.list
2019-05-20 09:51:52 +00:00
# initial packages
RUN apt-get update \
&& apt-get install \
bash \
fakeroot \
ccache \
curl \
software-properties-common \
--yes --no-install-recommends
RUN apt-get update \
&& apt-get install \
bash \
cmake \
ccache \
curl \
gcc-9 \
g++-9 \
2020-09-29 07:17:02 +00:00
clang-10 \
clang-tidy-10 \
lld-10 \
llvm-10 \
llvm-10-dev \
2020-09-15 12:16:23 +00:00
clang-11 \
clang-tidy-11 \
lld-11 \
llvm-11 \
llvm-11-dev \
libicu-dev \
libreadline-dev \
ninja-build \
gperf \
git \
opencl-headers \
ocl-icd-libopencl1 \
intel-opencl-icd \
tzdata \
gperf \
cmake \
gdb \
rename \
build-essential \
--yes --no-install-recommends
2020-03-03 12:32:54 +00:00
# This symlink required by gcc to find lld compiler
RUN ln -s /usr/bin/lld-${LLVM_VERSION} /usr/bin/ld.lld
ENV CC=clang-${LLVM_VERSION}
ENV CXX=clang++-${LLVM_VERSION}
# libtapi is required to support .tbh format from recent MacOS SDKs
2020-06-25 06:23:25 +00:00
RUN git clone https://github.com/tpoechtrager/apple-libtapi.git \
&& cd apple-libtapi \
&& INSTALLPREFIX=/cctools ./build.sh \
&& ./install.sh \
2020-06-25 06:26:10 +00:00
&& cd .. \
2020-06-25 06:23:25 +00:00
&& rm -rf apple-libtapi
# Build and install tools for cross-linking to Darwin
2020-06-25 06:23:25 +00:00
RUN git clone https://github.com/tpoechtrager/cctools-port.git \
&& cd cctools-port/cctools \
&& ./configure --prefix=/cctools --with-libtapi=/cctools \
--target=x86_64-apple-darwin \
&& make install \
2020-06-25 06:26:10 +00:00
&& cd ../.. \
2020-06-25 06:23:25 +00:00
&& rm -rf cctools-port
# Download toolchain for Darwin
2021-01-11 09:04:34 +00:00
RUN wget -nv https://github.com/phracker/MacOSX-SDKs/releases/download/10.15/MacOSX10.15.sdk.tar.xz
# Download toolchain for ARM
2020-03-22 21:10:14 +00:00
# It contains all required headers and libraries. Note that it's named as "gcc" but actually we are using clang for cross compiling.
RUN wget -nv "https://developer.arm.com/-/media/Files/downloads/gnu-a/8.3-2019.03/binrel/gcc-arm-8.3-2019.03-x86_64-aarch64-linux-gnu.tar.xz?revision=2e88a73f-d233-4f96-b1f4-d8b36e9bb0b9&la=en" -O gcc-arm-8.3-2019.03-x86_64-aarch64-linux-gnu.tar.xz
# Download toolchain for FreeBSD 11.3
RUN wget -nv https://clickhouse-datasets.s3.yandex.net/toolchains/toolchains/freebsd-11.3-toolchain.tar.xz
2020-09-09 10:51:01 +00:00
# NOTE: For some reason we have outdated version of gcc-10 in ubuntu 20.04 stable.
# Current workaround is to use latest version proposed repo. Remove as soon as
# gcc-10.2 appear in stable repo.
RUN echo 'deb http://archive.ubuntu.com/ubuntu/ focal-proposed restricted main multiverse universe' > /etc/apt/sources.list.d/proposed-repositories.list
RUN apt-get update \
2020-09-09 12:59:26 +00:00
&& apt-get install gcc-10 g++-10 --yes
2020-09-09 10:51:01 +00:00
2020-09-09 11:47:34 +00:00
RUN rm /etc/apt/sources.list.d/proposed-repositories.list && apt-get update
2020-09-09 10:51:01 +00:00
2019-04-25 12:29:28 +00:00
COPY build.sh /
CMD ["/bin/bash", "/build.sh"]