mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
16 lines
353 B
Docker
16 lines
353 B
Docker
# docker build -t yandex/clickhouse-style-test .
|
|
FROM ubuntu:20.04
|
|
|
|
RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install --yes \
|
|
shellcheck \
|
|
libxml2-utils \
|
|
git \
|
|
python3-pip \
|
|
pylint \
|
|
yamllint \
|
|
&& pip3 install codespell
|
|
|
|
COPY run.sh /
|
|
COPY process_style_check_result.py /
|
|
CMD ["/bin/bash", "/run.sh"]
|