blob: 883e77d03abb12e643a134d96a314bf6e751d356 [file] [log] [blame]
FROM golang:1.13.1-alpine3.10 as ALPINE-BUILDER
RUN apk --no-cache add --quiet alpine-sdk=1.0-r0
WORKDIR /go/src/github.com/lrills/helm-unittest/
COPY . .
RUN install -d /opt && make install HELM_PLUGIN_DIR=/opt
FROM alpine:3.10 as ALPINE
COPY --from=ALPINE-BUILDER /opt /opt