Files
wikiless/Dockerfile
T
xbdm 1978e00c66 Fix build image source
— I forgot to add wikiless.config to the Dockerfile. Should work if you re-clone and build it again…
2023-06-05 16:03:34 -04:00

9 lines
212 B
Docker

FROM node:16-alpine
RUN apk add git
RUN git clone https://github.com/Metastem/wikiless.git /wikiless
WORKDIR /wikiless
RUN apk add redis
RUN npm install --no-optional
COPY wikiless.config config.js
CMD npm start