Skip to content

Commit

Permalink
updte deps
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelef committed Apr 5, 2024
1 parent b6627b6 commit f00aa71
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.0-alpine as builder
FROM golang:1.22.2-alpine as builder
WORKDIR /app
COPY main.go .
COPY otel_instrumentation ./otel_instrumentation
Expand Down
2 changes: 1 addition & 1 deletion grpc-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.0-alpine as builder
FROM golang:1.22.2-alpine as builder
WORKDIR /app
COPY ./grpc-server/main.go .
COPY ./otel_instrumentation ./otel_instrumentation
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func main() {
grpcHost := getEnv("GRPC_TARGET", "localhost")
grpcTarget := fmt.Sprintf("%s:7070", grpcHost)

conn, err := grpc.Dial(grpcTarget,
conn, err := grpc.NewClient(grpcTarget,
grpc.WithTransportCredentials(insecure.NewCredentials()),
grpc.WithStatsHandler(otelgrpc.NewClientHandler()),
)
Expand Down
2 changes: 1 addition & 1 deletion secondary/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.0-alpine as builder
FROM golang:1.22.2-alpine as builder
WORKDIR /app
COPY ./secondary/main.go .
COPY ./otel_instrumentation ./otel_instrumentation
Expand Down

0 comments on commit f00aa71

Please sign in to comment.