#565 use Ubuntu 16.04 as a base Docker image

This commit is contained in:
Nikolay Volosatov 2017-03-10 11:18:40 +03:00
parent 75f1d7b820
commit c3c9b0b823
2 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
FROM ubuntu:14.04
FROM ubuntu:16.04
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/trusty/ dists/stable/main/binary-amd64/" | \
echo "deb https://repo.yandex.ru/clickhouse/xenial/ dists/stable/main/binary-amd64/" | \
tee /etc/apt/sources.list.d/clickhouse.list && \
apt-get update && \
apt-get install --allow-unauthenticated -y clickhouse-client && \

View File

@ -1,9 +1,9 @@
FROM ubuntu:14.04
FROM ubuntu:16.04
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/trusty/ dists/stable/main/binary-amd64/" | \
echo "deb https://repo.yandex.ru/clickhouse/xenial/ dists/stable/main/binary-amd64/" | \
tee /etc/apt/sources.list.d/clickhouse.list && \
apt-get update && \
apt-get install --allow-unauthenticated -y clickhouse-server-common && \