Skip to content

Commit 06fc8e8

Browse files
committed
better http health check management + bump to go 1.22
1 parent 38420e2 commit 06fc8e8

File tree

5 files changed

+31
-603
lines changed

5 files changed

+31
-603
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21.5 as build-env
1+
FROM golang:1.22.1 as build-env
22

33
ADD . /app
44
WORKDIR /app

go.mod

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/appclacks/cabourotte
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/cespare/xxhash/v2 v2.2.0 // indirect
@@ -17,7 +17,6 @@ require (
1717
github.com/russross/blackfriday/v2 v2.1.0 // indirect
1818
github.com/urfave/cli/v2 v2.26.0
1919
github.com/valyala/fasttemplate v1.2.2 // indirect
20-
go.uber.org/atomic v1.11.0 // indirect
2120
go.uber.org/multierr v1.11.0 // indirect
2221
go.uber.org/zap v1.26.0
2322
golang.org/x/crypto v0.17.0 // indirect
@@ -34,17 +33,9 @@ require github.com/mcorbin/corbierror v0.0.0-20220804210425-326e0b6f18e4
3433
require (
3534
github.com/beorn7/perks v1.0.1 // indirect
3635
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
37-
github.com/json-iterator/go v1.1.12 // indirect
38-
github.com/kr/text v0.2.0 // indirect
3936
github.com/mattn/go-isatty v0.0.20 // indirect
40-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
4137
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
42-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
43-
github.com/modern-go/reflect2 v1.0.2 // indirect
44-
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
4538
github.com/prometheus/client_model v0.5.0 // indirect
4639
github.com/valyala/bytebufferpool v1.0.0 // indirect
4740
github.com/xrash/smetrics v0.0.0-20231213231151-1d8dd44e695e // indirect
48-
go.uber.org/goleak v1.2.0 // indirect
49-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
5041
)

0 commit comments

Comments
 (0)