ClickHouse/docker/builder/Dockerfile

30 lines
626 B
Docker
Raw Normal View History

2020-03-22 20:44:17 +00:00
FROM ubuntu:19.10
2016-12-17 04:19:55 +00:00
2018-09-21 22:00:57 +00:00
RUN apt-get update -y \
&& env DEBIAN_FRONTEND=noninteractive \
apt-get install --yes --no-install-recommends \
bash \
ccache \
cmake \
curl \
expect \
2020-03-22 20:44:17 +00:00
g++ \
gcc \
2018-09-21 22:00:57 +00:00
ninja-build \
perl \
pkg-config \
python \
python-lxml \
python-requests \
python-termcolor \
sudo \
2019-04-18 10:20:31 +00:00
tzdata \
2020-03-22 20:44:17 +00:00
clang \
clang-tidy \
lld \
lldb
2019-08-11 09:30:01 +00:00
2018-09-21 22:00:57 +00:00
COPY build.sh /
2016-12-17 04:19:55 +00:00
2018-09-21 22:00:57 +00:00
CMD ["/bin/bash", "/build.sh"]