From 91b786e9e82ef406217620945d59c3f1983b47d4 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Sun, 25 Nov 2018 21:21:21 +0100 Subject: [PATCH] Fix shash build. --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3a6d2f5..951274f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,9 @@ RUN apk add --no-cache --virtual .build-deps \ && cd / \ && wget ftp://mcrypt.hellug.gr/pub/mcrypt/shash/shash-0.2.6.tar.gz \ && tar xvzf shash-0.2.6.tar.gz \ - && cd shash-0.2.6 && make && make install \ + && cd shash-0.2.6 \ + && ./configure \ + && make && make install \ \ # Cleanup && cd / \