From 1c2b697935c10ef4b3e5e0dc0cf573a4d8766269 Mon Sep 17 00:00:00 2001 From: klengyel Date: Tue, 31 May 2022 20:58:42 +0200 Subject: [PATCH] Update base image to golang 1.17.9 (#53) This will update the golang base image version from `1.17.6` to the current latest `1.17.9`. It introduces several security fixes for these CVEs: * [CVE-2022-23806](https://nvd.nist.gov/vuln/detail/CVE-2022-23806) * [CVE-2022-28327](https://nvd.nist.gov/vuln/detail/CVE-2022-28327) * [CVE-2022-24675](https://nvd.nist.gov/vuln/detail/CVE-2022-24675) * [CVE-2022-24921](https://nvd.nist.gov/vuln/detail/CVE-2022-24921) * [CVE-2022-23772](https://nvd.nist.gov/vuln/detail/CVE-2022-23772) * [CVE-2022-23773](https://nvd.nist.gov/vuln/detail/CVE-2022-23773) Co-authored-by: Krisztian Lengyel --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c0e613..2ac5640 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.17-buster AS build +FROM golang:1.17.9-buster AS build ARG VERSION="local" COPY . /app WORKDIR /app