From d3facfd7cdf5c238cfeab51eee250051a94e6602 Mon Sep 17 00:00:00 2001 From: Hayden Hughes Date: Wed, 26 Sep 2018 08:17:33 +1000 Subject: [PATCH] Add build-base to docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b57ff8ec..96105064 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. FROM golang:1.10-alpine AS build -RUN apk add --no-cache git +RUN apk add --no-cache git build-base ADD . /go/src/github.com/coreos/clair/ WORKDIR /go/src/github.com/coreos/clair/ RUN export CLAIR_VERSION=$(git describe --tag --always --dirty) && \