The Wiki Containerfile

This instance of wiki is containerized using `podman` and using the following `Containerfile`.

``` FROM docker.io/library/node:lts-alpine RUN npm install -g wiki RUN mkdir -p /root/.wiki RUN cd /usr/local/lib/node_modules/wiki && npm install wiki-plugin-wmap wiki-security-oidc EXPOSE 3999 WORKDIR /root CMD ["wiki", "--config", "/config/config.json"] ```

---

Note that rather than forking wiki, we opted to install the dependencies in the `node_modules` directory of the global wiki install under `/usr/local/lib/node_modules/wiki`

We place this file in `/etc/fedwiki/Containerfile` and build it in The Wiki Systemd Configuration.