mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
11 lines
128 B
Docker
11 lines
128 B
Docker
|
FROM golang:alpine
|
||
|
|
||
|
RUN apk --no-cache add make git curl bash fish
|
||
|
|
||
|
WORKDIR /project
|
||
|
|
||
|
COPY ./ /project
|
||
|
RUN make tools
|
||
|
|
||
|
CMD make
|