upgrade wiki-client to v0.23.0

This commit is contained in:
Eric Dobbs 2021-02-28 09:18:34 -07:00
parent 8d7d0e5119
commit 04c3ba7fe1
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,9 @@ RUN apk add --update --no-cache \
jq
WORKDIR "/home/node"
ARG WIKI_PACKAGE=wiki@0.23
RUN su node -c "npm install -g --prefix . $WIKI_PACKAGE"
ARG WIKI_CLIENT=wiki-client@v0.23.0
RUN su node -c "npm install -g --prefix . $WIKI_PACKAGE" \
&& su node -c "cd /home/node/lib/node_modules/wiki & npm install --save $WIKI_CLIENT"
RUN su node -c "mkdir -p .wiki"
VOLUME "/home/node/.wiki"
EXPOSE 3000