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.

19 lines
331 B

  1. # -- DEV DOCKERFILE --
  2. # -- DO NOT USE IN PRODUCTION! --
  3. FROM node:10-alpine
  4. LABEL maintainer "requarks.io"
  5. RUN apk update && \
  6. apk add bash curl git python make g++ --no-cache && \
  7. mkdir -p /var/wiki
  8. WORKDIR /var/wiki
  9. COPY package.json .
  10. RUN yarn --silent
  11. ENV dockerdev 1
  12. EXPOSE 3000
  13. CMD ["tail", "-f", "/dev/null"]