Skip to content

Commit 75aba42

Browse files
chore(deps): update all non-major dockerfile dependencies (#777)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Max Baumann <[email protected]>
1 parent 8084d6b commit 75aba42

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

Dockerfile.impulse-svc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12.3
1+
FROM python:3.12.5
22

33
# gRPC Port
44
EXPOSE 8080

Dockerfile.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# builder builds a go service
55
# the build args SERVICE and VERSION must be set!
66

7-
FROM golang:1.22 AS builder
7+
FROM golang:1.23-bookworm AS builder
88

99
ARG SERVICE
1010
ARG VERSION

Dockerfile.standalone

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# builder builds a go service
55
# the build args SERVICE and VERSION must be set!
66

7-
FROM golang:1.22 AS builder
7+
FROM golang:1.23-bookworm AS builder
88

99
ARG SERVICE
1010
ARG VERSION

images/dev-go/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# based on the debian 12 ("bookworm") go image
77
# for now this only builds x86_64 images (TODO)
8-
FROM golang:1.22-bookworm
8+
FROM golang:1.23-bookworm
99

1010
# appearently this is not set by the go image
1111
ENV GOROOT="/usr/local/go"

services/task-svc/internal/task-template/task_template.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ package task_template
33
import (
44
"common"
55
"context"
6-
"github.com/google/uuid"
7-
"google.golang.org/grpc/codes"
8-
"google.golang.org/grpc/status"
96
"hwdb"
107
"hwutil"
118
"task-svc/repos/task_template_repo"
129

10+
"github.com/google/uuid"
11+
"google.golang.org/grpc/codes"
12+
"google.golang.org/grpc/status"
13+
1314
pb "gen/services/task_svc/v1"
15+
1416
zlog "github.com/rs/zerolog/log"
1517
)
1618

@@ -27,7 +29,7 @@ func (ServiceServer) CreateTaskTemplate(ctx context.Context, req *pb.CreateTaskT
2729
db := hwdb.GetDB()
2830
tx, err := db.Begin(ctx)
2931
if err != nil {
30-
return nil, status.Errorf(codes.Internal, "could not start tx: "+err.Error())
32+
return nil, status.Errorf(codes.Internal, "could not start tx: %s", err.Error())
3133
}
3234
defer func() {
3335
_ = tx.Rollback(ctx)

0 commit comments

Comments
 (0)