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.

21 lines
406 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++ nano openssh gnupg --no-cache && \
  7. mkdir -p /wiki
  8. WORKDIR /wiki
  9. COPY package.json .
  10. RUN yarn --silent
  11. COPY ./dev/docker-postgres/init.sh ./init.sh
  12. ENV dockerdev 1
  13. ENV DEVDB postgres
  14. EXPOSE 3000
  15. CMD ["tail", "-f", "/dev/null"]