mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
18 lines
434 B
Docker
18 lines
434 B
Docker
# docker build -t clickhouse/style-test .
|
|
FROM ubuntu:20.04
|
|
|
|
RUN sed -i 's|http://archive|http://ru.archive|g' /etc/apt/sources.list
|
|
|
|
RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install --yes \
|
|
shellcheck \
|
|
libxml2-utils \
|
|
git \
|
|
python3-pip \
|
|
pylint \
|
|
yamllint \
|
|
&& pip3 install codespell PyGithub boto3
|
|
|
|
COPY run.sh /
|
|
COPY process_style_check_result.py /
|
|
CMD ["/bin/bash", "/run.sh"]
|