mirror of
https://github.com/Metastem/wikiless
synced 2024-12-06 19:16:58 +01:00
8 lines
181 B
Docker
8 lines
181 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
|
|
CMD npm start
|