eland/.buildkite/build-documentation.sh
2025-01-14 18:16:39 +04:00

9 lines
265 B
Bash
Executable File

#!/usr/bin/env bash
docker build --file .buildkite/Dockerfile --tag elastic/eland --build-arg PYTHON_VERSION=${PYTHON_VERSION} .
docker run \
--name doc_build \
--rm \
elastic/eland \
bash -c "apt-get update && apt-get install --yes pandoc && nox -s docs"