mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
37 lines
967 B
Docker
37 lines
967 B
Docker
# docker build -t yandex/clickhouse-stateless-with-coverage-test .
|
|
FROM yandex/clickhouse-deb-builder
|
|
|
|
RUN echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-9 main" >> /etc/apt/sources.list
|
|
|
|
RUN apt-get update -y \
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install --yes --no-install-recommends \
|
|
bash \
|
|
tzdata \
|
|
fakeroot \
|
|
debhelper \
|
|
zookeeper \
|
|
zookeeperd \
|
|
expect \
|
|
python \
|
|
python-lxml \
|
|
python-termcolor \
|
|
python-requests \
|
|
curl \
|
|
sudo \
|
|
openssl \
|
|
netcat-openbsd \
|
|
telnet \
|
|
moreutils \
|
|
brotli \
|
|
gdb \
|
|
lsof \
|
|
llvm-9
|
|
|
|
|
|
ENV TZ=Europe/Moscow
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
COPY run.sh /run.sh
|
|
|
|
CMD ["/bin/bash", "/run.sh"]
|