mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
13 lines
178 B
Docker
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
|