golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
590 B
21 lines
590 B
define DOCKERFILE_APIDOCS_LINT |
|
FROM $(NODE_IMAGE) |
|
RUN yarn global add @redocly/cli@1.0.0-beta.123 |
|
endef |
|
export DOCKERFILE_APIDOCS_LINT |
|
|
|
apidocs-lint: |
|
echo "$$DOCKERFILE_APIDOCS_LINT" | docker build . -f - -t temp |
|
docker run --rm -v $(PWD)/apidocs:/s -w /s temp \ |
|
sh -c "openapi lint openapi.yaml" |
|
|
|
define DOCKERFILE_APIDOCS_GEN |
|
FROM $(NODE_IMAGE) |
|
RUN yarn global add redoc-cli@0.13.7 |
|
endef |
|
export DOCKERFILE_APIDOCS_GEN |
|
|
|
apidocs-gen: |
|
echo "$$DOCKERFILE_APIDOCS_GEN" | docker build . -f - -t temp |
|
docker run --rm -v $(PWD)/apidocs:/s -w /s temp \ |
|
sh -c "redoc-cli bundle openapi.yaml"
|
|
|