ceph-csi/vendor/github.com/gemalto/flume/Dockerfile

13 lines
178 B
Docker
Raw Normal View History

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