Files
wikiless/Dockerfile
T
2022-12-15 08:10:26 +08:00

9 lines
188 B
Docker

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