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.

20 lines
370 B

  1. # -- DEV DOCKERFILE --
  2. # -- DO NOT USE IN PRODUCTION! --
  3. FROM node:10.14-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. COPY ./dev/docker/init.sh ./init.sh
  12. ENV dockerdev 1
  13. EXPOSE 3000
  14. CMD ["tail", "-f", "/dev/null"]