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 dev_tools/builder_images/go-builder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.7

FROM golang:1.24.10@sha256:7b13449f08287fdb53114d65bdf20eb3965e4e54997903b5cb9477df0ea37c12
FROM golang:1.24.13@sha256:d2d2bc1c84f7e60d7d2438a3836ae7d0c847f4888464e7ec9ba3a1339a1ee804

RUN apt update \
&& apt --no-install-recommends -y install \
Expand Down
2 changes: 1 addition & 1 deletion dev_tools/builder_images/go-builder/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
include ../Makefile.shared-builders

BUILDER_IMAGE_NAME = go-builder
BUILDER_TAG = v1.1.0
BUILDER_TAG = v1.2.0
DOCKER_IMAGE_DESCRIPTION := Go builder image for Geti
2 changes: 1 addition & 1 deletion interactive_ai/libs/iai_core_go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module geti.com/iai_core

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

require (
github.com/caarlos0/env/v11 v11.2.2
Expand Down
2 changes: 1 addition & 1 deletion interactive_ai/services/inference_gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.7

# Builder image
FROM golang:1.24.10@sha256:7b13449f08287fdb53114d65bdf20eb3965e4e54997903b5cb9477df0ea37c12 AS build
FROM golang:1.24.13@sha256:d2d2bc1c84f7e60d7d2438a3836ae7d0c847f4888464e7ec9ba3a1339a1ee804 AS build

WORKDIR /build/interactive_ai/service

Expand Down
2 changes: 1 addition & 1 deletion interactive_ai/services/inference_gateway/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module inference_gateway

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

replace (
geti.com/iai_core => ./../../libs/iai_core_go
Expand Down
2 changes: 1 addition & 1 deletion interactive_ai/services/media/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.7

# Builder image
FROM golang:1.24.10@sha256:7b13449f08287fdb53114d65bdf20eb3965e4e54997903b5cb9477df0ea37c12 AS build
FROM golang:1.24.13@sha256:d2d2bc1c84f7e60d7d2438a3836ae7d0c847f4888464e7ec9ba3a1339a1ee804 AS build

WORKDIR /build/interactive_ai/service

Expand Down
2 changes: 1 addition & 1 deletion interactive_ai/services/media/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module media

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

replace geti.com/iai_core => ./../../libs/iai_core_go

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module geti.com/account_service_grpc

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

require (
github.com/golang/protobuf v1.5.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module geti.com/credit_system

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

require (
google.golang.org/grpc v1.65.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module geti.com/modelmesh

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

require (
github.com/stretchr/testify v1.9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module geti.com/modelregistration

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

require (
github.com/stretchr/testify v1.9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module geti.com/predict

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

require (
github.com/stretchr/testify v1.9.0
Expand Down
2 changes: 1 addition & 1 deletion platform/services/account/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.7

# Builder image
FROM golang:1.24.10@sha256:7b13449f08287fdb53114d65bdf20eb3965e4e54997903b5cb9477df0ea37c12 AS build
FROM golang:1.24.13@sha256:d2d2bc1c84f7e60d7d2438a3836ae7d0c847f4888464e7ec9ba3a1339a1ee804 AS build

WORKDIR /build/control_plane/account_service

Expand Down
2 changes: 1 addition & 1 deletion platform/services/account/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module account_service

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

replace (
geti.com/account_service_grpc => ../../../libs/grpc_interfaces/src/grpc_interfaces/account_service/go
Expand Down
2 changes: 1 addition & 1 deletion platform/services/auth_proxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.7

# Builder image
FROM golang:1.24.10@sha256:7b13449f08287fdb53114d65bdf20eb3965e4e54997903b5cb9477df0ea37c12 AS build
FROM golang:1.24.13@sha256:d2d2bc1c84f7e60d7d2438a3836ae7d0c847f4888464e7ec9ba3a1339a1ee804 AS build

WORKDIR /build/control_plane/auth_proxy

Expand Down
2 changes: 1 addition & 1 deletion platform/services/auth_proxy/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module auth_proxy

go 1.24.0

toolchain go1.24.10
toolchain go1.24.13

replace geti.com/account_service_grpc => ../../../libs/grpc_interfaces/src/grpc_interfaces/account_service/go

Expand Down
Loading