mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-04 00:51:06 -05:00
15 lines
361 B
Bash
Executable File
15 lines
361 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# Ensure current path is project root
|
|
cd "$(dirname "$0")/../"
|
|
|
|
cp docs/redoc/master/openapi.json openapi/tests/openapi.json
|
|
|
|
docker run --rm \
|
|
--network=host \
|
|
-e OPENAPI_FILE='openapi.json' \
|
|
-v "${PWD}"/openapi/tests:/code \
|
|
"$(docker build -q ./openapi/tests)" sh -c /code/run_docker.sh
|