mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
18 lines
371 B
Docker
18 lines
371 B
Docker
|
FROM ubuntu:14.04
|
||
|
|
||
|
RUN apt-get update -y
|
||
|
|
||
|
RUN apt-get install -y software-properties-common && \
|
||
|
add-apt-repository ppa:ubuntu-toolchain-r/test
|
||
|
|
||
|
RUN apt-get update -y && \
|
||
|
apt-get install -y cmake libssl-dev libcrypto++-dev \
|
||
|
libglib2.0-dev libltdl-dev libicu-dev libmysql++-dev \
|
||
|
gcc-5 g++-5 unixodbc-dev
|
||
|
|
||
|
ADD build.sh /
|
||
|
RUN chmod +x /build.sh
|
||
|
|
||
|
|
||
|
CMD ["/build.sh"]
|