mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
9ec8a576cf
* Docker wip * no tests * fixes * No tests * Fixes * Clean
21 lines
618 B
Docker
21 lines
618 B
Docker
FROM ubuntu:16.04
|
|
|
|
ARG repository="deb https://repo.yandex.ru/clickhouse/xenial/ dists/stable/main/binary-amd64/"
|
|
ARG version=\*
|
|
|
|
RUN apt update && \
|
|
apt install -y apt-transport-https && \
|
|
mkdir -p /etc/apt/sources.list.d && \
|
|
echo $repository | tee /etc/apt/sources.list.d/clickhouse.list && \
|
|
apt update && \
|
|
apt install --allow-unauthenticated -y clickhouse-client=$version locales && \
|
|
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
|
|
apt clean
|
|
|
|
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
|
|
|
|
ENTRYPOINT ["/usr/bin/clickhouse-client"]
|