Skip to content

Commit 458c7f4

Browse files
authored
Merge pull request #376 from nginx-proxy/go-1.17
Bump Go version to 1.17
2 parents 342744e + 6697d62 commit 458c7f4

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build docker-gen from scratch
2-
FROM golang:1.16.7-alpine as go-builder
2+
FROM golang:1.17.1-alpine as go-builder
33

44
ARG VERSION=main
55

go.mod

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,39 @@
11
module github.com/nginx-proxy/docker-gen
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/BurntSushi/toml v0.3.1
77
github.com/fsouza/go-dockerclient v1.7.2
88
github.com/stretchr/testify v1.7.0
99
)
10+
11+
require (
12+
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
13+
github.com/Microsoft/go-winio v0.4.16 // indirect
14+
github.com/Microsoft/hcsshim v0.8.14 // indirect
15+
github.com/containerd/cgroups v0.0.0-20200531161412-0dbf7f05ba59 // indirect
16+
github.com/containerd/containerd v1.4.3 // indirect
17+
github.com/containerd/continuity v0.0.0-20210208174643-50096c924a4e // indirect
18+
github.com/davecgh/go-spew v1.1.1 // indirect
19+
github.com/docker/docker v20.10.3-0.20210216175712-646072ed6524+incompatible // indirect
20+
github.com/docker/go-connections v0.4.0 // indirect
21+
github.com/docker/go-units v0.4.0 // indirect
22+
github.com/gogo/protobuf v1.3.2 // indirect
23+
github.com/gorilla/mux v1.8.0 // indirect
24+
github.com/hashicorp/golang-lru v0.5.1 // indirect
25+
github.com/moby/sys/mount v0.2.0 // indirect
26+
github.com/moby/sys/mountinfo v0.4.0 // indirect
27+
github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect
28+
github.com/morikuni/aec v1.0.0 // indirect
29+
github.com/opencontainers/go-digest v1.0.0 // indirect
30+
github.com/opencontainers/image-spec v1.0.1 // indirect
31+
github.com/opencontainers/runc v0.1.1 // indirect
32+
github.com/pkg/errors v0.9.1 // indirect
33+
github.com/pmezard/go-difflib v1.0.0 // indirect
34+
github.com/sirupsen/logrus v1.7.0 // indirect
35+
go.opencensus.io v0.22.0 // indirect
36+
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect
37+
golang.org/x/sys v0.0.0-20210216224549-f992740a1bac // indirect
38+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
39+
)

0 commit comments

Comments
 (0)