File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- # Copyright 2017-2020 The Kubernetes Authors.
1
+ # Copyright 2023 The Kubernetes Authors.
2
2
#
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change 1
- FROM --platform=$BUILDPLATFORM golang:1.18 as build-env
1
+ FROM --platform=$BUILDPLATFORM golang:1.19 as build-env
2
2
3
3
# xx wraps go to automatically configure $GOOS, $GOARCH, and $GOARM
4
4
# based on TARGETPLATFORM provided by Docker.
@@ -13,7 +13,7 @@ WORKDIR ${APP_FOLDER}
13
13
ARG TARGETPLATFORM
14
14
RUN CGO_ENABLED=0 go build -a -ldflags '-extldflags "-static"' -o /bin/main ./cmd/nfs-subdir-external-provisioner
15
15
16
- FROM --platform=$TARGETPLATFORM alpine:3.12
16
+ FROM --platform=$TARGETPLATFORM alpine:3.18
17
17
18
18
RUN apk update --no-cache && apk add ca-certificates
19
19
COPY --from=build-env /bin/main /app/main
Original file line number Diff line number Diff line change 1
1
module github.com/kubernetes-sigs/nfs-subdir-external-provisioner
2
2
3
- go 1.17
3
+ go 1.19
4
4
5
5
require (
6
6
github.com/golang/glog v1.0.0
You can’t perform that action at this time.
0 commit comments