# docker build -t yandex/clickhouse-deb-builder . FROM ubuntu:19.10 RUN apt-get --allow-unauthenticated update -y \ && env DEBIAN_FRONTEND=noninteractive \ apt-get --allow-unauthenticated install --yes --no-install-recommends \ bash \ fakeroot \ ccache \ curl \ software-properties-common \ gnupg \ apt-transport-https \ ca-certificates # Libraries from OS are only needed to test the "unbundled" build (that is not used in production). RUN apt-get --allow-unauthenticated update -y \ && env DEBIAN_FRONTEND=noninteractive \ apt-get --allow-unauthenticated install --yes --no-install-recommends \ gcc-9 \ g++-9 \ clang-9 \ lld-9 \ clang-tidy-9 \ libicu-dev \ libreadline-dev \ gperf \ ninja-build \ perl \ pkg-config \ devscripts \ debhelper \ git \ libc++-dev \ libc++abi-dev \ libboost-program-options-dev \ libboost-system-dev \ libboost-filesystem-dev \ libboost-thread-dev \ zlib1g-dev \ liblz4-dev \ libdouble-conversion-dev \ librdkafka-dev \ libpoconetssl62 \ libpoco-dev \ libgoogle-perftools-dev \ libzstd-dev \ libltdl-dev \ libre2-dev \ libjemalloc-dev \ unixodbc-dev \ odbcinst \ tzdata \ gperf \ alien \ libcapnp-dev \ cmake \ gdb \ pigz \ moreutils \ libcctz-dev # 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 RUN curl -O https://clickhouse-builds.s3.yandex.net/utils/dpkg-deb RUN chmod +x dpkg-deb RUN cp dpkg-deb /usr/bin # This symlink required by gcc to find lld compiler RUN ln -s /usr/bin/lld-9 /usr/bin/ld.lld COPY build.sh / CMD ["/bin/bash", "/build.sh"]