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>
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
|