You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
234 B

  1. FROM node:6-alpine
  2. RUN apk update && apk upgrade && \
  3. apk add --no-cache bash git openssh
  4. ENV WIKI_JS_DOCKER 1
  5. RUN mkdir -p /usr/src/app
  6. WORKDIR /usr/src/app
  7. RUN npm install wiki.js@latest
  8. EXPOSE 3000
  9. CMD [ "node", "server" ]