mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
e72ed593be
Signed-off-by: Rakshith R <rar@redhat.com>
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
|