Anticipating next wiki release with updates to wiki-client & -server

This commit is contained in:
Eric Dobbs 2020-02-17 09:55:38 -07:00
parent 347dff8ea8
commit 60c869a141
2 changed files with 5 additions and 6 deletions

View File

@ -6,7 +6,8 @@ RUN apk add --update --no-cache \
jq
WORKDIR "/home/node"
ARG WIKI_PACKAGE=wiki@0.21.0
RUN su node -c "npm install -g --prefix . $WIKI_PACKAGE"
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"
RUN su node -c "mkdir -p .wiki"
VOLUME "/home/node/.wiki"
EXPOSE 3000

View File

@ -53,10 +53,8 @@ The repos in Dockerhub and GitHub are configured to automatically build new tags
# Publish experimental plugins
Invoke Dockerhub and GitHub integration.
``` bash
docker build \
--tag dobbs/farm:0.14.0-frame \
--build-arg WIKI_PACKAGE='dobbs/wiki#frame' \
.
docker push dobbs/farm:0.14.0-frame
git tag -am "" '1.0.2-pre-0217'
git push --atomic origin master '1.0.2-pre-0217'
```