ClickHouse/docker/test/unit/Dockerfile

11 lines
291 B
Docker
Raw Normal View History

2019-06-04 13:01:16 +00:00
# docker build -t yandex/clickhouse-unit-test .
2019-04-08 11:26:18 +00:00
FROM yandex/clickhouse-stateless-test
ENV TZ=Europe/Moscow
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
2020-02-07 16:01:20 +00:00
RUN apt-get install gdb
2019-04-08 11:26:18 +00:00
2021-02-20 20:04:24 +00:00
COPY run.sh /
COPY process_unit_tests_result.py /
CMD ["/bin/bash", "/run.sh"]