mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
16 lines
536 B
Docker
16 lines
536 B
Docker
FROM ubuntu:16.04
|
|
|
|
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 && \
|
|
echo $repository | tee /etc/apt/sources.list.d/clickhouse.list && \
|
|
apt-get update && \
|
|
apt-get install --allow-unauthenticated -y clickhouse-client=$version && \
|
|
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
|
|
apt-get clean
|
|
|
|
ENTRYPOINT ["/usr/bin/clickhouse-client"]
|