ClickHouse/docker/packager/binary/Dockerfile

120 lines
3.9 KiB
Docker
Raw Normal View History

# rebuild in #33610
# docker build -t clickhouse/binary-builder .
2020-09-07 15:40:21 +00:00
FROM ubuntu:20.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
2020-04-20 20:04:35 +00:00
ENV DEBIAN_FRONTEND=noninteractive LLVM_VERSION=13
RUN apt-get update \
&& apt-get install \
apt-transport-https \
apt-utils \
ca-certificates \
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 [trusted=yes] https://apt.llvm.org/${CODENAME}/ llvm-toolchain-${CODENAME}-${LLVM_VERSION} main" >> \
2021-12-14 14:22:31 +00:00
/etc/apt/sources.list \
&& apt-get clean
2019-05-20 09:51:52 +00:00
# initial packages
RUN apt-get update \
&& apt-get install \
bash \
2021-03-31 21:54:45 +00:00
build-essential \
ccache \
2021-12-14 14:22:31 +00:00
clang-${LLVM_VERSION} \
clang-tidy-${LLVM_VERSION} \
2021-03-31 21:54:45 +00:00
cmake \
curl \
2021-12-14 14:22:31 +00:00
fakeroot \
2021-03-31 21:54:45 +00:00
gdb \
git \
gperf \
lld-${LLVM_VERSION} \
llvm-${LLVM_VERSION} \
llvm-${LLVM_VERSION}-dev \
2021-03-31 21:54:45 +00:00
moreutils \
ninja-build \
2021-04-01 12:12:30 +00:00
pigz \
rename \
2021-12-14 14:22:31 +00:00
software-properties-common \
--yes --no-install-recommends \
&& apt-get clean
2022-03-18 18:59:56 +00:00
# Rust toolchain and libraries
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
RUN rustup target add aarch64-unknown-linux-gnu && \
rustup target add x86_64-apple-darwin && \
rustup target add x86_64-unknown-freebsd && \
rustup target add aarch64-apple-darwin && \
rustup target add powerpc64le-unknown-linux-gnu
RUN apt-get install \
build-essential \
--yes
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
2021-12-14 14:22:31 +00:00
RUN git clone --depth 1 https://github.com/tpoechtrager/apple-libtapi.git \
2020-06-25 06:23:25 +00:00
&& 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 (x86-64)
2021-12-14 14:22:31 +00:00
RUN git clone --depth 1 https://github.com/tpoechtrager/cctools-port.git \
2020-06-25 06:23:25 +00:00
&& 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
# Build and install tools for cross-linking to Darwin (aarch64)
2021-12-14 14:22:31 +00:00
RUN git clone --depth 1 https://github.com/tpoechtrager/cctools-port.git \
&& cd cctools-port/cctools \
&& ./configure --prefix=/cctools --with-libtapi=/cctools \
--target=aarch64-apple-darwin \
&& make install \
&& cd ../.. \
&& rm -rf cctools-port
# Download toolchain and SDK for Darwin
RUN wget -nv https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.0.sdk.tar.xz
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 \
2021-12-14 14:22:31 +00:00
&& apt-get install gcc-11 g++-11 --yes \
&& apt-get clean
2020-09-09 10:51:01 +00:00
2022-02-08 18:12:04 +00:00
# Architecture of the image when BuildKit/buildx is used
ARG TARGETARCH
ARG NFPM_VERSION=2.15.0
RUN arch=${TARGETARCH:-amd64} \
&& curl -Lo /tmp/nfpm.deb "https://github.com/goreleaser/nfpm/releases/download/v${NFPM_VERSION}/nfpm_${arch}.deb" \
&& dpkg -i /tmp/nfpm.deb \
&& rm /tmp/nfpm.deb
2020-09-09 10:51:01 +00:00
2019-04-25 12:29:28 +00:00
COPY build.sh /
CMD ["bash", "-c", "/build.sh 2>&1"]