ClickHouse/docker/test/performance-comparison/Dockerfile
2020-01-10 17:06:44 +03:00

19 lines
625 B
Docker

# docker build -t yandex/clickhouse-performance-comparison .
FROM ubuntu:18.04
RUN apt-get update \
&& apt-get install --yes --no-install-recommends \
p7zip-full bash git ncdu wget psmisc python3 python3-pip python3-dev g++ \
&& pip3 --no-cache-dir install clickhouse_driver \
&& apt-get purge --yes python3-dev g++ \
&& apt-get autoremove --yes \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY * /
CMD /entrypoint.sh
# docker run --network=host --volume <workspace>:/workspace --volume=<output>:/output -e PR_TO_TEST=<> -e SHA_TO_TEST=<> yandex/clickhouse-performance-comparison