mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
9 lines
265 B
Bash
Executable File
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"
|