From 75c7b1399bfe57707550adcafe1dae1f567aa80d Mon Sep 17 00:00:00 2001 From: Nicolas Duchon Date: Fri, 2 Dec 2022 00:21:56 +0100 Subject: [PATCH] build: golang 1.18.1 -> 1.18.8 --- Dockerfile | 2 +- Dockerfile.alpine | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9dff82f..cf33847 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG DOCKER_GEN_VERSION=0.9.1 ARG FOREGO_VERSION=v0.17.0 # Use a specific version of golang to build both binaries -FROM golang:1.18.1 as gobuilder +FROM golang:1.18.8 as gobuilder # Build docker-gen from scratch FROM gobuilder as dockergen diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 9f4c2ae..43a57fd 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -3,7 +3,7 @@ ARG DOCKER_GEN_VERSION=0.9.1 ARG FOREGO_VERSION=v0.17.0 # Use a specific version of golang to build both binaries -FROM golang:1.18.1-alpine as gobuilder +FROM golang:1.18.8-alpine as gobuilder RUN apk add --no-cache git musl-dev # Build docker-gen from scratch