switch apidocjs to use node 14 image as base
fix typo in php7.2 Dockerfile
This commit is contained in:
13
dockerfiles/tasks/apidocjs/entrypoint-apidocs.sh
Executable file
13
dockerfiles/tasks/apidocjs/entrypoint-apidocs.sh
Executable 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}
|
||||
Reference in New Issue
Block a user