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