File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ release-tools/cloudbuild.sh
Original file line number Diff line number Diff line change 1+ release-tools/cloudbuild.yaml
Original file line number Diff line number Diff line change 11FROM gcr.io/distroless/static:latest
22LABEL maintainers="Kubernetes Authors"
33LABEL description="CSI External Snapshotter Sidecar"
4+ ARG binary=./bin/csi-snapshotter
45
5- COPY ./bin/csi-snapshotter csi-snapshotter
6+ COPY ${binary} csi-snapshotter
67ENTRYPOINT ["/csi-snapshotter" ]
Original file line number Diff line number Diff line change 11FROM gcr.io/distroless/static:latest
22LABEL maintainers="Kubernetes Authors"
33LABEL description="Snapshot Controller"
4+ ARG binary=./bin/snapshot-controller
45
5- COPY ./bin/snapshot-controller snapshot-controller
6+ COPY ${binary} snapshot-controller
67ENTRYPOINT ["/snapshot-controller" ]
You can’t perform that action at this time.
0 commit comments