ClickHouse/docker/packager/deb/Dockerfile

98 lines
3.0 KiB
Docker
Raw Normal View History

2019-06-04 13:01:16 +00:00
# docker build -t yandex/clickhouse-deb-builder .
FROM ubuntu:19.10
2020-04-20 20:13:33 +00:00
RUN apt-get --allow-unauthenticated update -y && apt-get install --yes wget gnupg
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
RUN echo "deb [trusted=yes] http://apt.llvm.org/eoan/ llvm-toolchain-eoan-10 main" >> /etc/apt/sources.list
2020-04-20 20:04:35 +00:00
2020-06-29 13:13:20 +00:00
# initial packages
RUN apt-get --allow-unauthenticated update -y \
&& env DEBIAN_FRONTEND=noninteractive \
apt-get --allow-unauthenticated install --yes --no-install-recommends \
bash \
fakeroot \
2019-04-25 12:29:28 +00:00
ccache \
curl \
2019-09-06 19:19:41 +00:00
software-properties-common \
gnupg \
apt-transport-https \
ca-certificates
# 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
2020-08-07 16:07:52 +00:00
RUN curl -O https://clickhouse-builds.s3.yandex.net/utils/1/dpkg-deb
RUN chmod +x dpkg-deb
RUN cp dpkg-deb /usr/bin
# Libraries from OS are only needed to test the "unbundled" build (that is not used in production).
2019-05-20 09:51:52 +00:00
RUN apt-get --allow-unauthenticated update -y \
&& env DEBIAN_FRONTEND=noninteractive \
apt-get --allow-unauthenticated install --yes --no-install-recommends \
2019-07-29 11:04:25 +00:00
gcc-9 \
g++-9 \
2020-04-30 12:10:32 +00:00
llvm-10 \
2020-04-20 20:04:35 +00:00
clang-10 \
lld-10 \
clang-tidy-10 \
2020-03-22 21:10:14 +00:00
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 \
libboost-iostreams-dev \
libboost-regex-dev \
zlib1g-dev \
liblz4-dev \
libdouble-conversion-dev \
librdkafka-dev \
libpoconetssl62 \
libpoco-dev \
libgoogle-perftools-dev \
libzstd-dev \
libltdl-dev \
libre2-dev \
libjemalloc-dev \
libmsgpack-dev \
libcurl4-openssl-dev \
opencl-headers \
ocl-icd-libopencl1 \
intel-opencl-icd \
unixodbc-dev \
odbcinst \
tzdata \
gperf \
2019-08-29 12:36:41 +00:00
alien \
libcapnp-dev \
2019-09-17 14:24:45 +00:00
cmake \
2019-09-17 16:42:18 +00:00
gdb \
pigz \
2020-08-15 08:05:38 +00:00
moreutils \
libcctz-dev \
libldap2-dev \
libsasl2-dev \
heimdal-multidev \
libhyperscan-dev
2019-09-17 19:26:24 +00:00
2019-09-17 16:42:18 +00:00
2020-03-03 12:32:54 +00:00
# This symlink required by gcc to find lld compiler
2020-04-20 20:04:35 +00:00
RUN ln -s /usr/bin/lld-10 /usr/bin/ld.lld
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"]