mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-19 17:50:03 -08:00
10 lines
289 B
Makefile
10 lines
289 B
Makefile
define DOCKERFILE_APIDOCS_GEN
|
|
FROM $(NODE_IMAGE)
|
|
RUN yarn global add redoc-cli@0.13.7
|
|
endef
|
|
export DOCKERFILE_APIDOCS_GEN
|
|
|
|
apidocs:
|
|
echo "$$DOCKERFILE_APIDOCS_GEN" | docker build . -f - -t temp
|
|
docker run --rm -v "$(shell pwd)/api:/s" -w /s temp \
|
|
sh -c "redoc-cli bundle openapi.yaml"
|