ClickHouse/docker/test/unit/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
191 B
Docker
Raw Normal View History

# rebuild in #33610
2021-09-06 11:33:39 +00:00
# docker build -t clickhouse/unit-test .
ARG FROM_TAG=latest
FROM clickhouse/stateless-test:$FROM_TAG
2019-04-08 11:26:18 +00:00
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 /
CMD ["/bin/bash", "/run.sh"]