mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 05:03:20 +00:00
7db8e99300
* update build script (gcc-5 -> gcc-7) * add gitlab-ci * sadly but my gitlab worker doesn't have make * fix gitlkab-ci config * fix the input device is not a TTY * set runner tag to docker * allow to use ObjectId in clickhouse (oid will be converted to string) * update ci config * code review
19 lines
466 B
Docker
19 lines
466 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 git cmake3 libssl-dev libcrypto++-dev \
|
|
libglib2.0-dev libltdl-dev libicu-dev libmysql++-dev \
|
|
libreadline-dev libmysqlclient-dev unixodbc-dev \
|
|
gcc-7 g++-7 unixodbc-dev devscripts dupload fakeroot debhelper
|
|
|
|
ADD build.sh /
|
|
RUN chmod +x /build.sh
|
|
|
|
|
|
CMD ["/build.sh"]
|