diff --git a/rhel8/Dockerfile b/rhel8/Dockerfile index 90b3de41..940c6be3 100644 --- a/rhel8/Dockerfile +++ b/rhel8/Dockerfile @@ -6,7 +6,7 @@ SHELL ["/bin/bash", "-c"] RUN dnf install -y git wget -ENV GOLANG_VERSION=1.22.2 +ENV GOLANG_VERSION=1.22.5 # download appropriate binary based on the target architecture for multi-arch builds RUN OS_ARCH=${TARGETARCH/x86_64/amd64} && OS_ARCH=${OS_ARCH/aarch64/arm64} && \ diff --git a/rhel9/Dockerfile b/rhel9/Dockerfile index 64780362..ee841944 100644 --- a/rhel9/Dockerfile +++ b/rhel9/Dockerfile @@ -6,7 +6,7 @@ SHELL ["/bin/bash", "-c"] RUN dnf install -y git wget -ENV GOLANG_VERSION=1.22.2 +ENV GOLANG_VERSION=1.22.5 # download appropriate binary based on the target architecture for multi-arch builds RUN OS_ARCH=${TARGETARCH/x86_64/amd64} && OS_ARCH=${OS_ARCH/aarch64/arm64} && \ diff --git a/ubuntu20.04/Dockerfile b/ubuntu20.04/Dockerfile index f6ac25a0..9e9f3404 100644 --- a/ubuntu20.04/Dockerfile +++ b/ubuntu20.04/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ git && \ rm -rf /var/lib/apt/lists/* -ENV GOLANG_VERSION=1.22.2 +ENV GOLANG_VERSION=1.22.5 # download appropriate binary based on the target architecture for multi-arch builds RUN OS_ARCH=${TARGETARCH/x86_64/amd64} && OS_ARCH=${OS_ARCH/aarch64/arm64} && \ diff --git a/ubuntu22.04/Dockerfile b/ubuntu22.04/Dockerfile index c3c4bbec..a1086650 100644 --- a/ubuntu22.04/Dockerfile +++ b/ubuntu22.04/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ git && \ rm -rf /var/lib/apt/lists/* -ENV GOLANG_VERSION=1.22.2 +ENV GOLANG_VERSION=1.22.5 # download appropriate binary based on the target architecture for multi-arch builds RUN OS_ARCH=${TARGETARCH/x86_64/amd64} && OS_ARCH=${OS_ARCH/aarch64/arm64} && \