ceph-csi/vendor/github.com/gemalto/flume/Dockerfile
Rakshith R e72ed593be rebase: vendor files required for kmip
Signed-off-by: Rakshith R <rar@redhat.com>
2022-08-18 07:41:42 +00:00

13 lines
178 B
Docker

FROM golang:1.14-alpine
RUN apk --no-cache add make bash fish build-base
WORKDIR /flume
COPY ./Makefile ./go.mod ./go.sum /flume/
RUN make tools
COPY ./ /flume
CMD make all