From 53cb2aebfc6f07a69d0bd7d9521388b2a560aef0 Mon Sep 17 00:00:00 2001 From: Alexander Didenko Date: Fri, 8 Nov 2024 10:13:47 +0100 Subject: [PATCH] Bump go version to 1.22.9 (#78) * Bump go version to 1.22.9 This should fix some stdlib CVEs * Fix format warnings --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d69ac75..da1a3b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,14 +6,14 @@ # @authors Minigun Maintainers # @copyright 2020 Wayfair, LLC -- All rights reserved. -FROM golang:1.22 as test +FROM golang:1.22.9 AS test ENV GOPATH=/go ENV PATH="$PATH:$GOPATH/bin" WORKDIR /go/src/github.com/wayfair-incubator/minigun COPY . ./ RUN make test -FROM test as build +FROM test AS build ENV GOPATH=/go ENV PATH="$PATH:$GOPATH/bin" WORKDIR /go/src/github.com/wayfair-incubator/minigun