Ver código fonte

Merge pull request #1940 from nginx-proxy/dockergen-0.9.0

Bump docker-gen from 0.8.4 to 0.9.0
Nicolas Duchon 3 anos atrás
pai
commit
2f82265891
2 arquivos alterados com 4 adições e 4 exclusões
  1. 2 2
      Dockerfile
  2. 2 2
      Dockerfile.alpine

+ 2 - 2
Dockerfile

@@ -1,9 +1,9 @@
 # setup build arguments for version of dependencies to use
-ARG DOCKER_GEN_VERSION=0.8.4
+ARG DOCKER_GEN_VERSION=0.9.0
 ARG FOREGO_VERSION=v0.17.0
 
 # Use a specific version of golang to build both binaries
-FROM golang:1.17.8 as gobuilder
+FROM golang:1.18.0 as gobuilder
 
 # Build docker-gen from scratch
 FROM gobuilder as dockergen

+ 2 - 2
Dockerfile.alpine

@@ -1,9 +1,9 @@
 # setup build arguments for version of dependencies to use
-ARG DOCKER_GEN_VERSION=0.8.4
+ARG DOCKER_GEN_VERSION=0.9.0
 ARG FOREGO_VERSION=v0.17.0
 
 # Use a specific version of golang to build both binaries
-FROM golang:1.17.8-alpine as gobuilder
+FROM golang:1.18.0-alpine as gobuilder
 RUN apk add --no-cache git musl-dev
 
 # Build docker-gen from scratch