Parcourir la source

build: bump docker-gen from 0.8.4 to 0.9.0

Nicolas Duchon il y a 3 ans
Parent
commit
2e1da37f9a
2 fichiers modifiés avec 4 ajouts et 4 suppressions
  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