ClickHouse/docker/packager/binary/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
3.5 KiB
Docker
Raw Normal View History

# rebuild in #33610
# docker build -t clickhouse/binary-builder .
ARG FROM_TAG=latest
FROM clickhouse/test-util:$FROM_TAG
2022-03-18 18:59:56 +00:00
# Rust toolchain and libraries
2022-09-18 08:50:44 +00:00
ENV RUSTUP_HOME=/rust/rustup
ENV CARGO_HOME=/rust/cargo
2022-06-07 18:09:06 +00:00
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
2022-09-18 08:50:44 +00:00
RUN chmod 777 -R /rust
ENV PATH="/rust/cargo/env:${PATH}"
ENV PATH="/rust/cargo/bin:${PATH}"
2022-03-18 18:59:56 +00:00
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 \
2022-03-31 08:03:31 +00:00
gcc-aarch64-linux-gnu \
2022-03-18 18:59:56 +00:00
build-essential \
2022-03-31 08:03:31 +00:00
libc6 \
libc6-dev \
libc6-dev-arm64-cross \
2022-03-18 18:59:56 +00:00
--yes
2022-09-13 20:09:39 +00:00
# Install CMake 3.20+ for Rust compilation
2022-10-02 17:52:05 +00:00
# Used https://askubuntu.com/a/1157132 as reference
2022-09-13 20:09:39 +00:00
RUN apt purge cmake --yes
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
RUN apt-add-repository 'deb https://apt.kitware.com/ubuntu/ focal main'
RUN apt update && apt install cmake --yes
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-08-14 03:57:55 +00:00
# A cross-linker for RISC-V 64 (we need it, because LLVM's LLD does not work):
RUN apt-get install binutils-riscv64-linux-gnu
2022-02-08 18:12:04 +00:00
# Architecture of the image when BuildKit/buildx is used
ARG TARGETARCH
ARG NFPM_VERSION=2.20.0
2022-02-08 18:12:04 +00:00
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
ARG GO_VERSION=1.18.3
# We need go for clickhouse-diagnostics
RUN arch=${TARGETARCH:-amd64} \
&& curl -Lo /tmp/go.tgz "https://go.dev/dl/go${GO_VERSION}.linux-${arch}.tar.gz" \
&& tar -xzf /tmp/go.tgz -C /usr/local/ \
&& rm /tmp/go.tgz
ENV PATH="$PATH:/usr/local/go/bin"
ENV GOPATH=/workdir/go
ENV GOCACHE=/workdir/
RUN curl https://raw.githubusercontent.com/matus-chochlik/ctcache/7fd516e91c17779cbc6fc18bd119313d9532dd90/clang-tidy-cache -Lo /usr/bin/clang-tidy-cache \
&& chmod +x /usr/bin/clang-tidy-cache
RUN mkdir /workdir && chmod 777 /workdir
WORKDIR /workdir
2022-04-02 08:33:40 +00:00
2019-04-25 12:29:28 +00:00
COPY build.sh /
CMD ["bash", "-c", "/build.sh 2>&1"]