mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
11 lines
291 B
Docker
11 lines
291 B
Docker
# docker build -t yandex/clickhouse-unit-test .
|
|
FROM yandex/clickhouse-stateless-test
|
|
|
|
ENV TZ=Europe/Moscow
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
RUN apt-get install gdb
|
|
|
|
COPY run.sh /
|
|
COPY process_unit_tests_result.py /
|
|
CMD ["/bin/bash", "/run.sh"]
|