mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
17 lines
615 B
Docker
17 lines
615 B
Docker
FROM ubuntu:18.04
|
|
|
|
ARG repository="deb https://repo.clickhouse.tech/deb/stable/ main/"
|
|
ARG version=21.7.1.*
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y apt-transport-https dirmngr && \
|
|
mkdir -p /etc/apt/sources.list.d && \
|
|
apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 && \
|
|
echo $repository | tee /etc/apt/sources.list.d/clickhouse.list && \
|
|
apt-get update && \
|
|
env DEBIAN_FRONTEND=noninteractive apt-get install --allow-unauthenticated -y clickhouse-test && \
|
|
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
|
|
apt-get clean
|
|
|
|
ENTRYPOINT ["/usr/bin/clickhouse-test"]
|