ClickHouse/docker/builder/Dockerfile
2020-03-22 23:44:17 +03:00

30 lines
626 B
Docker

FROM ubuntu:19.10
RUN apt-get update -y \
&& env DEBIAN_FRONTEND=noninteractive \
apt-get install --yes --no-install-recommends \
bash \
ccache \
cmake \
curl \
expect \
g++ \
gcc \
ninja-build \
perl \
pkg-config \
python \
python-lxml \
python-requests \
python-termcolor \
sudo \
tzdata \
clang \
clang-tidy \
lld \
lldb
COPY build.sh /
CMD ["/bin/bash", "/build.sh"]