mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
11 lines
201 B
Docker
11 lines
201 B
Docker
# docker build -t clickhouse/docs-check .
|
|
ARG FROM_TAG=latest
|
|
FROM clickhouse/docs-builder:$FROM_TAG
|
|
|
|
COPY run.sh /
|
|
|
|
ENV REPO_PATH=/repo_path
|
|
ENV OUTPUT_PATH=/output_path
|
|
|
|
CMD ["/bin/bash", "/run.sh"]
|