From 2936a2760f7228019e5abef8840976a602814316 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 19 Dec 2020 19:52:45 +0200 Subject: [PATCH] Revert "Skip building the man pages." This reverts commit 6f6f07d52bd9ba0f2dba2e98bb5d338c530356a0. For whatever reason, this breaks the build. --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c7e259c..cc1055b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ RUN apk add --update --no-cache \ flex \ libev-dev \ openssl-dev \ + py3-docutils \ ; ARG Version ENV VERSION="$Version" @@ -18,10 +19,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 --disable-documentation && \ - make ENABLE_DOCUMENTATION=0 && \ - make install && \ - make check +RUN ./bootstrap && \ + make && \ + make install +RUN make check FROM alpine:$AlpineVersion # hadolint ignore=DL3018 -- GitLab