Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/readthedocs/sphinx_rtd_theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docker-entrypoint.sh')
-rw-r--r--docker-entrypoint.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 2a97f76..b80ac12 100644
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -7,4 +7,11 @@ cp -r /project/node_modules /project-working-copy/
cd /project-working-copy
pip install --upgrade -e ".[dev]"
+# This helps a potential permission issue, but might be removed
+# pending some more investigation of docker host file system
+# permissions in the bind mount
+npm cache clean --force
+npm install
+
+echo "Going to invoke: npm run $@"
npm run $@