From 2f2b9e7b928332424ad446e1ae91b1f331384be2 Mon Sep 17 00:00:00 2001 From: Tyler Date: Wed, 24 Feb 2021 21:54:03 -0500 Subject: [PATCH] Fix yara paths --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bc754d3..e55ad92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ RUN mkdir -p /build/src ADD https://github.com/VirusTotal/yara/archive/v4.0.5.tar.gz /build/yara-4.0.5.tar.gz -RUN apk add --no-cache automake libtool make gcc -RUN cd /build; tar xvf yara-4.0.5.tar.gz; cd yara-4.0.5; ./configure; make; make install +RUN apk add --no-cache automake libtool make gcc openssl pkg-config +RUN cd /build; tar xvf yara-4.0.5.tar.gz; cd yara-4.0.5; ./bootstrap.sh; ./configure; make; make install ADD . /build/src