ClickHouse/docker/test/stateless_with_coverage/Dockerfile

34 lines
834 B
Docker
Raw Normal View History

# docker build -t yandex/clickhouse-stateless-with-coverage-test .
FROM yandex/clickhouse-deb-builder
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
ENV TZ=Europe/Moscow
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
2019-07-08 11:21:04 +00:00
COPY run.sh /run.sh
2019-07-08 11:21:04 +00:00
CMD ["/bin/bash", "/run.sh"]