mirror of
https://github.com/Metastem/wikiless
synced 2024-12-06 19:16:58 +01:00
1978e00c66
— I forgot to add wikiless.config to the Dockerfile. Should work if you re-clone and build it again…
9 lines
212 B
Docker
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
|