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.
2 parents f8b8131 + 9f3ede3 commit 103b746Copy full SHA for 103b746
Dockerfile
@@ -14,14 +14,14 @@
14
15
16
17
-FROM golang:1.10.1-alpine3.7 as builder
+FROM golang:1.11.2-alpine3.8 as builder
18
WORKDIR /go/src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver
19
ADD . .
20
ARG TAG
21
RUN CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-X main.vendorVersion='"${TAG:-latest}"' -extldflags "-static"' -o bin/gce-pd-csi-driver ./cmd/
22
23
# Start from Google Debian base
24
-FROM gcr.io/google-containers/debian-base-amd64:0.3
+FROM gcr.io/google-containers/debian-base-amd64:0.4.0
25
COPY --from=builder /go/src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/bin/gce-pd-csi-driver /gce-pd-csi-driver
26
27
# Install necessary dependencies
0 commit comments