From ed115bf9873fa9ad7a58d33ed6ff4311d8a2e910 Mon Sep 17 00:00:00 2001 From: "Cody (Xuecheng) Zhang" Date: Fri, 20 Dec 2024 14:01:18 +0800 Subject: [PATCH] chore: install buildx for e2e image and bump Golang version (#5987) --- tests/images/kubekins-e2e/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/images/kubekins-e2e/Dockerfile b/tests/images/kubekins-e2e/Dockerfile index 7a5c5460404..007c28681ca 100644 --- a/tests/images/kubekins-e2e/Dockerfile +++ b/tests/images/kubekins-e2e/Dockerfile @@ -1,6 +1,6 @@ FROM debian:buster-slim -ARG GO_VERSION=1.23.1 +ARG GO_VERSION=1.23.4 # common util tools RUN apt-get update && \ @@ -40,6 +40,7 @@ RUN curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID" # the pod logs, so we just comment out the call to it... :shrug: RUN apt-get update && \ apt-get install -y --no-install-recommends docker-ce=5:20.10.* && \ + apt-get install docker-buildx-plugin -y && \ rm -rf /var/lib/apt/lists/* && \ sed -i 's/cgroupfs_mount$/#cgroupfs_mount\n/' /etc/init.d/docker \ && update-alternatives --set iptables /usr/sbin/iptables-legacy \