mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
11 lines
227 B
Docker
11 lines
227 B
Docker
# rebuild in #33610
|
|
# docker build -t clickhouse/unit-test .
|
|
ARG FROM_TAG=latest
|
|
FROM clickhouse/stateless-test:$FROM_TAG
|
|
|
|
RUN apt-get install gdb
|
|
|
|
COPY run.sh /
|
|
COPY process_unit_tests_result.py /
|
|
CMD ["/bin/bash", "/run.sh"]
|