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 14
14
15
15
16
16
17
- FROM golang:1.13.4 as builder
17
+ FROM golang:1.13.15 as builder
18
18
WORKDIR /go/src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver
19
19
ADD . .
20
20
RUN make
21
21
22
22
# 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
24
24
RUN clean-install udev
25
25
26
26
# 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
28
28
COPY --from=builder /go/src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/bin/gce-pd-csi-driver /gce-pd-csi-driver
29
29
# Install necessary dependencies
30
30
RUN clean-install util-linux e2fsprogs mount ca-certificates udev xfsprogs
Original file line number Diff line number Diff line change
1
+ //go:build linux
1
2
// +build linux
2
3
3
4
/*
Original file line number Diff line number Diff line change
1
+ //go:build !linux
1
2
// +build !linux
2
3
3
4
/*
You can’t perform that action at this time.
0 commit comments