FROM alpine:3.9 RUN apk --no-cache add subversion cyrus-sasl-plain && \ mkdir /repository WORKDIR /repository ENV HOME=/repository COPY servers /root/.subversion/servers COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]