We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afbcc48 commit 72a5bd0Copy full SHA for 72a5bd0
.cloudbuild.sh
@@ -0,0 +1 @@
1
+release-tools/cloudbuild.sh
Dockerfile
@@ -1,8 +1,9 @@
FROM alpine
2
LABEL maintainers="Kubernetes Authors"
3
LABEL description="HostPath Driver"
4
+ARG binary=./bin/hostpathplugin
5
6
# Add util-linux to get a new version of losetup.
7
RUN apk add util-linux
-COPY ./bin/hostpathplugin /hostpathplugin
8
+COPY ${binary} /hostpathplugin
9
ENTRYPOINT ["/hostpathplugin"]
cloudbuild.yaml
+release-tools/cloudbuild.yaml
0 commit comments