mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 10:34:21 +00:00
10 lines
381 B
Docker
10 lines
381 B
Docker
FROM ubuntu:14.04
|
|
|
|
RUN mkdir -p /etc/apt/sources.list.d && \
|
|
echo "deb http://repo.yandex.ru/clickhouse/trusty/ 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/
|
|
|
|
ENTRYPOINT ["/usr/bin/clickhouse-client"]
|