Add base system, curl and jq for debug and checks.

This commit is contained in:
Denis Boulas 2018-10-27 03:20:43 +03:00
parent 0fc08c696a
commit e80d5c5e56

View file

@ -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