diff --git a/build/go/fileshot/Dockerfile b/build/go/fileshot/Dockerfile index cccf58db..c102861f 100644 --- a/build/go/fileshot/Dockerfile +++ b/build/go/fileshot/Dockerfile @@ -1,7 +1,7 @@ # Strelka Fileshot # Client is designed to one-shot upload files and retrieve their results # For more information, please see: https://target.github.io/strelka/#/?id=strelka-fileshot -FROM golang:1.24 AS build +FROM golang:1.26 AS build LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com" # Copy source files and set the working directory diff --git a/build/go/filestream/Dockerfile b/build/go/filestream/Dockerfile index 057f7d83..812aed65 100644 --- a/build/go/filestream/Dockerfile +++ b/build/go/filestream/Dockerfile @@ -1,7 +1,7 @@ # Strelka Filestream # Client is designed to continuously stream files and retrieves their results. # For more information, please see: https://target.github.io/strelka/#/?id=strelka-filestream -FROM golang:1.24 AS build +FROM golang:1.26 AS build LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com" # Copy source files and set the working directory diff --git a/build/go/frontend/Dockerfile b/build/go/frontend/Dockerfile index 9976e02f..1a5927d0 100644 --- a/build/go/frontend/Dockerfile +++ b/build/go/frontend/Dockerfile @@ -1,7 +1,7 @@ # Strelka Frontend # The frontend for a cluster in which clients can connect directly via Envoy. # For more information, please see: https://target.github.io/strelka/#/?id=strelka-frontend -FROM golang:1.24 AS build +FROM golang:1.26 AS build LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com" # Copy source files and set the working directory diff --git a/build/go/manager/Dockerfile b/build/go/manager/Dockerfile index 4fc0d440..df650509 100644 --- a/build/go/manager/Dockerfile +++ b/build/go/manager/Dockerfile @@ -1,7 +1,7 @@ # Strelka Manager # Manages portions of Strelka's Redis database. # For more information, please see: https://target.github.io/strelka/#/?id=strelka-manager -FROM golang:1.24 AS build +FROM golang:1.26 AS build LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com" # Copy source files and set the working directory diff --git a/build/go/oneshot/Dockerfile b/build/go/oneshot/Dockerfile index 106c8fff..d2fb9686 100644 --- a/build/go/oneshot/Dockerfile +++ b/build/go/oneshot/Dockerfile @@ -1,7 +1,7 @@ # Strelka Oneshot # Client is designed to be used to submit a single file from command line and receive the result for it immediately. # For more information, please see: https://target.github.io/strelka/#/?id=strelka-oneshot -FROM golang:1.24 AS build +FROM golang:1.26 AS build LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com" # Copy source files and set the working directory diff --git a/go.mod b/go.mod index 2252ddf8..1c041ca3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module strelka-frontend -go 1.24.2 +go 1.26.6 require ( github.com/go-redis/redis/v8 v8.11.4