ClickHouse/docker/client/Dockerfile
2017-03-10 11:18:40 +03:00

14 lines
495 B
Docker

FROM ubuntu:16.04
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/xenial/ dists/stable/main/binary-amd64/" | \
tee /etc/apt/sources.list.d/clickhouse.list && \
apt-get update && \
apt-get install --allow-unauthenticated -y clickhouse-client && \
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
apt-get clean
ENTRYPOINT ["/usr/bin/clickhouse-client"]