ClickHouse/docker/client/Dockerfile

21 lines
638 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=\*
2018-03-12 13:44:06 +00:00
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 && \
2018-03-12 13:44:06 +00:00
apt-get update && \
apt-get install --allow-unauthenticated -y clickhouse-client=$version locales && \
2017-03-04 13:55:53 +00:00
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
2018-03-12 13:44:06 +00:00
apt-get clean
2016-06-15 16:50:33 +00:00
2017-10-03 15:33:52 +00:00
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
2016-06-16 10:24:37 +00:00
ENTRYPOINT ["/usr/bin/clickhouse-client"]