File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
16
- FROM golang:1.15.8-alpine as builder
16
+ FROM golang:1.16.3-alpine3.13 as builder
17
17
WORKDIR /go/src/sigs.k8s.io/blob-csi-driver
18
18
ADD . .
19
19
RUN GO111MODULE=on CGO_ENABLED=0 GOOS=linux go build -mod vendor -o _output/blobfuse-proxy ./pkg/blobfuse-proxy
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.13.10 -alpine3.10 as builder
15
+ FROM golang:1.16.3 -alpine3.13 as builder
16
16
WORKDIR /go/src/sigs.k8s.io/blob-csi-driver
17
17
ADD . .
18
18
ARG TARGETARCH
@@ -26,7 +26,8 @@ RUN apt-get update && clean-install ca-certificates pkg-config libfuse-dev cmake
26
26
RUN wget -O /tmp/packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb && dpkg -i /tmp/packages-microsoft-prod.deb && apt-get update && apt install blobfuse fuse -y && rm -f /tmp/packages-microsoft-prod.deb
27
27
RUN apt remove wget -y
28
28
# this is a workaround to install nfs-common & nfs-kernel-server and don't quit with error
29
- RUN apt update && apt install nfs-common nfs-kernel-server -y || true
29
+ # WIP: check if updating the kernel version would fix the below error
30
+ # RUN apt update && apt install nfs-common nfs-kernel-server -y || true
30
31
LABEL maintainers="andyzhangx"
31
32
LABEL description="Azure Blob Storage CSI driver"
32
33
You can’t perform that action at this time.
0 commit comments