# docker build -t yandex/clickhouse-fuzzer . FROM ubuntu:18.04 ENV LANG=C.UTF-8 ENV TZ=Europe/Moscow RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends \ bash \ ca-certificates \ curl \ gdb \ git \ libc6-dbg \ moreutils \ ncdu \ p7zip-full \ parallel \ psmisc \ rsync \ tree \ tzdata \ vim \ wget \ && apt-get autoremove --yes \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* COPY * / CMD cd /workspace \ && /run-fuzzer.sh 2>&1 | ts "$(printf '%%Y-%%m-%%d %%H:%%M:%%S\t')" | tee main.log # docker run --network=host --volume :/workspace -e PR_TO_TEST=<> -e SHA_TO_TEST=<> yandex/clickhouse-fuzzer