2016-06-15 16:50:33 +00:00
|
|
|
FROM ubuntu:14.04
|
|
|
|
|
2017-02-16 16:18:54 +00:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y apt-transport-https && \
|
|
|
|
mkdir -p /etc/apt/sources.list.d && \
|
|
|
|
echo "deb https://repo.yandex.ru/clickhouse/trusty/ dists/stable/main/binary-amd64/" | \
|
|
|
|
tee /etc/apt/sources.list.d/clickhouse.list && \
|
2016-06-15 16:50:33 +00:00
|
|
|
apt-get update && \
|
2016-06-16 10:24:37 +00:00
|
|
|
apt-get install --allow-unauthenticated -y clickhouse-client && \
|
2016-06-15 16:50:33 +00:00
|
|
|
rm -rf /var/lib/apt/lists/* /var/cache/
|
|
|
|
|
2016-06-16 10:24:37 +00:00
|
|
|
ENTRYPOINT ["/usr/bin/clickhouse-client"]
|