From 0467944417e08224a67134365437066114ffc39c Mon Sep 17 00:00:00 2001 From: Karel van IJperen Date: Sun, 6 Aug 2023 12:17:48 +0200 Subject: [PATCH] Update base image to 1.20.7 Update golang base image from `1.20.6` to `1.20.7`. Go `1.20.7` fixes a CVE: * [CVE-2023-29409] https://nvd.nist.gov/vuln/detail/CVE-2023-29409 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b104caa..dce2de8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.6-bookworm AS build +FROM golang:1.20.7-bookworm AS build ARG VERSION="local" COPY . /app WORKDIR /app