bump to wiki-client@0.20.1 and wiki-server@0.17.5

This commit is contained in:
Eric Dobbs 2020-04-19 17:35:00 -06:00
parent 60c869a141
commit f94133b505

View File

@ -6,8 +6,10 @@ RUN apk add --update --no-cache \
jq
WORKDIR "/home/node"
ARG WIKI_PACKAGE=wiki@0.21.0
ARG WIKI_CLIENT=wiki-client@0.20.1
ARG WIKI_SERVER=wiki-server@0.17.5
RUN su node -c "npm install -g --prefix . $WIKI_PACKAGE" \
&& su node -c "cd /home/node/lib/node_modules/wiki && npm install --save wiki-server@0.17.3 wiki-client@0.20.0"
&& su node -c "cd /home/node/lib/node_modules/wiki && npm install --save $WIKI_CLIENT $WIKI_SERVER"
RUN su node -c "mkdir -p .wiki"
VOLUME "/home/node/.wiki"
EXPOSE 3000