Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/go/fileshot/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/go/filestream/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/go/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/go/manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/go/oneshot/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down