mirror of
https://github.com/Metastem/wikiless
synced 2024-12-06 19:16:58 +01:00
8 lines
134 B
Docker
8 lines
134 B
Docker
FROM node:16-alpine
|
|
WORKDIR /wikiless
|
|
COPY . /wikiless
|
|
RUN npm install --no-optional
|
|
COPY config.js.template config.js
|
|
CMD npm start
|
|
|