File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1414
1515
1616
17- FROM golang:1.13.4 as builder
17+ FROM golang:1.13.15 as builder
1818WORKDIR /go/src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver
1919ADD . .
2020RUN make
2121
2222# MAD HACKS: Build a version first so we can take the scsi_id bin and put it somewhere else in our real build
23- FROM k8s.gcr.io/build-image/debian-base-amd64:v2.1.3 as base
23+ FROM k8s.gcr.io/build-image/debian-base-amd64:buster-v1.9.0 as base
2424RUN clean-install udev
2525
2626# Start from Kubernetes Debian base
27- FROM k8s.gcr.io/build-image/debian-base-amd64:v2.1.3
27+ FROM k8s.gcr.io/build-image/debian-base-amd64:buster-v1.9.0
2828COPY --from=builder /go/src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/bin/gce-pd-csi-driver /gce-pd-csi-driver
2929# Install necessary dependencies
3030RUN clean-install util-linux e2fsprogs mount ca-certificates udev xfsprogs
Original file line number Diff line number Diff line change 1+ //go:build linux
12// +build linux
23
34/*
Original file line number Diff line number Diff line change 1+ //go:build !linux
12// +build !linux
23
34/*
You can’t perform that action at this time.
0 commit comments