From e80d5c5e56ffd14aef57e25f6113a73c37719ab2 Mon Sep 17 00:00:00 2001 From: Denis Boulas Date: Sat, 27 Oct 2018 03:20:43 +0300 Subject: [PATCH] Add base system, curl and jq for debug and checks. --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 12e25ce45..e4f057564 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,10 +5,12 @@ COPY . /go/src/github.com/pilosa/pilosa/ RUN cd /go/src/github.com/pilosa/pilosa \ && CGO_ENABLED=0 make install-dep install FLAGS="-a" -FROM scratch +FROM alpine:3.8 LABEL maintainer "dev@pilosa.com" +RUN apk add --no-cache curl jq + COPY --from=builder /go/bin/pilosa /pilosa COPY LICENSE /LICENSE