ClickHouse/docker/client/Dockerfile

16 lines
536 B
Docker
Raw Normal View History

FROM ubuntu:16.04
2016-06-15 16:50:33 +00:00
2017-03-15 09:27:54 +00:00
ARG repository="deb https://repo.yandex.ru/clickhouse/xenial/ dists/stable/main/binary-amd64/"
ARG version=\*
RUN apt-get update && \
apt-get install -y apt-transport-https && \
mkdir -p /etc/apt/sources.list.d && \
2017-03-15 09:27:54 +00:00
echo $repository | tee /etc/apt/sources.list.d/clickhouse.list && \
2016-06-15 16:50:33 +00:00
apt-get update && \
2017-03-15 09:27:54 +00:00
apt-get install --allow-unauthenticated -y clickhouse-client=$version && \
2017-03-04 13:55:53 +00:00
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
apt-get clean
2016-06-15 16:50:33 +00:00
2016-06-16 10:24:37 +00:00
ENTRYPOINT ["/usr/bin/clickhouse-client"]