mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
14 lines
234 B
Docker
14 lines
234 B
Docker
FROM node:6-alpine
|
|
|
|
RUN apk update && apk upgrade && \
|
|
apk add --no-cache bash git openssh
|
|
|
|
ENV WIKI_JS_DOCKER 1
|
|
|
|
RUN mkdir -p /usr/src/app
|
|
WORKDIR /usr/src/app
|
|
RUN npm install wiki.js@latest
|
|
|
|
EXPOSE 3000
|
|
CMD [ "node", "server" ]
|