ClickHouse/docker/client/Dockerfile

35 lines
1.1 KiB
Docker
Raw Normal View History

FROM ubuntu:18.04
2016-06-15 16:50:33 +00:00
# ARG for quick switch to a given ubuntu mirror
ARG apt_archive="http://archive.ubuntu.com"
RUN sed -i "s|http://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
ARG repository="deb https://repo.clickhouse.com/deb/stable/ main/"
ARG version=21.13.1.*
2017-03-15 09:27:54 +00:00
2018-09-21 22:00:57 +00:00
RUN apt-get update \
&& apt-get install --yes --no-install-recommends \
apt-transport-https \
ca-certificates \
2018-09-21 22:00:57 +00:00
dirmngr \
gnupg \
&& mkdir -p /etc/apt/sources.list.d \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 \
&& echo $repository > /etc/apt/sources.list.d/clickhouse.list \
&& apt-get update \
&& env DEBIAN_FRONTEND=noninteractive \
apt-get install --allow-unauthenticated --yes --no-install-recommends \
clickhouse-client=$version \
clickhouse-common-static=$version \
locales \
2021-03-22 19:43:26 +00:00
tzdata \
2018-09-21 22:00:57 +00:00
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf \
&& 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
ENTRYPOINT ["/usr/bin/clickhouse-client"]