mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
Merge pull request #593 from yandex/METRIQA-895
METRIQA-895 Parameterized Dockerfile.
This commit is contained in:
commit
c3e8cf39df
@ -1,12 +1,14 @@
|
||||
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 "deb https://repo.yandex.ru/clickhouse/xenial/ dists/stable/main/binary-amd64/" | \
|
||||
tee /etc/apt/sources.list.d/clickhouse.list && \
|
||||
echo $repository | tee /etc/apt/sources.list.d/clickhouse.list && \
|
||||
apt-get update && \
|
||||
apt-get install --allow-unauthenticated -y clickhouse-client && \
|
||||
apt-get install --allow-unauthenticated -y clickhouse-client=$version && \
|
||||
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
|
||||
apt-get clean
|
||||
|
||||
|
@ -1,12 +1,14 @@
|
||||
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 "deb https://repo.yandex.ru/clickhouse/xenial/ dists/stable/main/binary-amd64/" | \
|
||||
tee /etc/apt/sources.list.d/clickhouse.list && \
|
||||
echo $repository | tee /etc/apt/sources.list.d/clickhouse.list && \
|
||||
apt-get update && \
|
||||
apt-get install --allow-unauthenticated -y clickhouse-server-common && \
|
||||
apt-get install --allow-unauthenticated -y clickhouse-server-common=$version && \
|
||||
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
|
||||
apt-get clean
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user