diff --git a/Dockerfile b/Dockerfile index cc1055b9d6e20d99f4c2d7a8c0cceb927a5afd5c..c7e259c344a737d3af9d017d7f299400ea235f8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,6 @@ RUN apk add --update --no-cache \ flex \ libev-dev \ openssl-dev \ - py3-docutils \ ; ARG Version ENV VERSION="$Version" @@ -19,10 +18,10 @@ RUN wget "https://github.com/varnish/hitch/archive/${VERSION}.tar.gz" && \ tar --no-same-owner --no-same-permissions -xzf "${VERSION}.tar.gz" ENV LDFLAGS="--static" WORKDIR /hitch-$Version -RUN ./bootstrap && \ - make && \ - make install -RUN make check +RUN ./bootstrap --disable-documentation && \ + make ENABLE_DOCUMENTATION=0 && \ + make install && \ + make check FROM alpine:$AlpineVersion # hadolint ignore=DL3018