ClickHouse/docker/test/style/Dockerfile

18 lines
426 B
Docker
Raw Normal View History

2020-08-16 11:59:16 +00:00
# docker build -t yandex/clickhouse-style-test .
2020-08-14 13:09:23 +00:00
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
2020-08-14 13:09:23 +00:00
2021-02-26 11:43:58 +00:00
COPY run.sh /
COPY process_style_check_result.py /
CMD ["/bin/bash", "/run.sh"]