switch apidocjs to use node 14 image as base

fix typo in php7.2 Dockerfile
This commit is contained in:
2020-05-17 09:19:50 -04:00
parent e4f03d3702
commit 4a38cc16f4
5 changed files with 33 additions and 33 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env sh
set -e
#set -x
echo Building docs into: "${DOCS_DIR}"
echo Reading Source files from "${APP_DIR}"
echo Using file filter: "${FILE_FILTER}"
echo
cd /src/ || exit
echo ${APP_DIR} : ${DOCS_DIR} : ${FILE_FILTER}
rm -rf ${DOCS_DIR} && mkdir -p ${DOCS_DIR}
apidoc -i ${APP_DIR} -o ${DOCS_DIR} -f ${FILE_FILTER}