From a33183fa1d0a3a1ff212a073a1e67011191a3f04 Mon Sep 17 00:00:00 2001 From: Tyler Date: Mon, 4 Oct 2021 21:40:03 -0400 Subject: [PATCH] Update yara to 4.1.2 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index db9f81c..3b2acce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,10 @@ FROM golang:alpine AS builder RUN mkdir -p /build/src -ADD https://github.com/VirusTotal/yara/archive/v4.0.4.tar.gz /build/yara-4.0.4.tar.gz +ADD https://github.com/VirusTotal/yara/archive/v4.1.2.tar.gz /build/yara-4.1.2.tar.gz RUN apk add --no-cache autoconf automake libtool make gcc g++ openssl-dev pkgconfig -RUN cd /build; tar xvf yara-4.0.4.tar.gz; cd yara-4.0.4; ./bootstrap.sh; ./configure; make; make install +RUN cd /build; tar xvf yara-4.1.2.tar.gz; cd yara-4.1.2; ./bootstrap.sh; ./configure; make; make install ADD . /build/src