mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
34 lines
814 B
Docker
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"]
|