ClickHouse/docker/builder/Dockerfile
2019-08-05 07:09:09 +00:00

34 lines
814 B
Docker

FROM ubuntu:18.04
RUN apt-get update -y \
&& apt-get install -y software-properties-common \
&& add-apt-repository ppa:ubuntu-toolchain-r/test \
&& env DEBIAN_FRONTEND=noninteractive \
apt-get install --yes --no-install-recommends \
bash \
ccache \
cmake \
curl \
expect \
g++-9 \
gcc-9 \
libclang-6.0-dev \
libicu-dev \
liblld-6.0-dev \
libreadline-dev \
gperf \
ninja-build \
perl \
pkg-config \
python \
python-lxml \
python-requests \
python-termcolor \
sudo \
tzdata \
gperf
COPY build.sh /
CMD ["/bin/bash", "/build.sh"]