From 0ec31446cf6f34249a2f19da3d1b97c93e8a8dd0 Mon Sep 17 00:00:00 2001 From: Tyler Date: Wed, 24 Feb 2021 21:51:00 -0500 Subject: [PATCH] Fix yara paths --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 33cb3df..bc754d3 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.5.tar.gz /build/yara/src.tar.gz +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 src.tar.gz; cd yara-4.0.5; ./configure; make; make install +RUN cd /build; tar xvf yara-4.0.5.tar.gz; cd yara-4.0.5; ./configure; make; make install ADD . /build/src