Dockerfile 239 B

12345678910
  1. FROM alpine:3.9
  2. RUN apk --no-cache add subversion cyrus-sasl-plain && \
  3. mkdir /repository
  4. WORKDIR /repository
  5. ENV HOME=/repository
  6. COPY servers /root/.subversion/servers
  7. COPY entrypoint.sh /entrypoint.sh
  8. ENTRYPOINT ["/entrypoint.sh"]