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.

15 lines
316 B

  1. FROM node:10-alpine
  2. LABEL maintainer="requarks.io"
  3. RUN apk update && \
  4. apk add bash curl git openssh supervisor --no-cache && \
  5. mkdir -p /var/wiki
  6. WORKDIR /var/wiki
  7. COPY supervisord.conf /etc/supervisord.conf
  8. COPY . /var/wiki
  9. EXPOSE 3000
  10. CMD ["supervisord", "--nodaemon", "-c", "/etc/supervisord.conf"]