From 333989c606e689fdded23143768b969617f9160d Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Tue, 22 Oct 2024 12:46:14 -0400 Subject: [PATCH] Run npm install and grunt --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0c2af14..0ac87a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,12 @@ USER node RUN npm install -g --prefix . $WIKI_PACKAGE && \ cd lib/node_modules/wiki && \ - npm install --prefix . git+https://git.coopcloud.tech/wiki-cafe/wiki-security-passportjs + npm install --prefix . git+https://git.coopcloud.tech/wiki-cafe/wiki-security-passportjs && \ + cd node_modules/wiki-security-passportjs && \ + npm install && \ + node_modules/grunt/bin/grunt + + RUN mkdir -p .wiki