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.

12 lines
215 B

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