File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1- 1.22.7
1+ 1.23.4
Original file line number Diff line number Diff line change 1111# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212# See the License for the specific language governing permissions and
1313# limitations under the License.
14- ARG image=public.ecr.aws/eks-distro-build-tooling/eks-distro-minimal-base-nonroot:2024-08-13-1723575672.2
15- ARG golang_image=public.ecr.aws/docker/library/golang:1.22.5
14+ ARG image=public.ecr.aws/eks-distro-build-tooling/eks-distro-minimal-base-nonroot:2024-10-01-1727740884.2023
15+ ARG golang_image=public.ecr.aws/docker/library/golang:1.23.4
1616
1717FROM --platform=$BUILDPLATFORM $golang_image AS builder
1818WORKDIR /go/src/github.com/kubernetes-sigs/aws-iam-authenticator
1919COPY . .
2020RUN go version
21- RUN goproxy=https://goproxy.io go mod download
21+
2222ARG TARGETOS TARGETARCH
23- RUN GOOS=$TARGETOS GOARCH=$TARGETARCH make bin
23+ RUN GOPROXY=direct GOOS=$TARGETOS GOARCH=$TARGETARCH make bin
2424RUN chown 65532 _output/bin/aws-iam-authenticator
2525
26- FROM --platform=$TARGETPLATFORM public.ecr.aws/eks-distro/kubernetes/go-runner:v0.9.0 -eks-1-21-4 as go-runner
26+ FROM --platform=$TARGETPLATFORM public.ecr.aws/eks-distro/kubernetes/go-runner:v0.16.4 -eks-1-32-2 AS go-runner
2727
2828FROM --platform=$TARGETPLATFORM $image
29- COPY --from=go-runner /usr/local/bin/ go-runner /usr/local/bin/go-runner
29+ COPY --from=go-runner /go-runner /usr/local/bin/go-runner
3030COPY --from=builder /go/src/github.com/kubernetes-sigs/aws-iam-authenticator/_output/bin/aws-iam-authenticator /aws-iam-authenticator
3131ENTRYPOINT ["/aws-iam-authenticator" ]
Original file line number Diff line number Diff line change 11module sigs.k8s.io/aws-iam-authenticator
22
3- go 1.22.7
3+ go 1.23.4
44
55require (
66 github.com/aws/aws-sdk-go v1.54.6
Original file line number Diff line number Diff line change 11module sigs.k8s.io/aws-iam-authenticator/tests/e2e
22
3- go 1.22.7
3+ go 1.23.4
44
55require (
66 github.com/onsi/ginkgo/v2 v2.19.0
Original file line number Diff line number Diff line change 11module sigs.k8s.io/aws-iam-authenticator/tests/integration
22
3- go 1.22.7
3+ go 1.23.4
44
55require (
66 github.com/aws/aws-sdk-go v1.54.6
You can’t perform that action at this time.
0 commit comments