From eb823d75ba256634ad36b4e88283942e66fb5635 Mon Sep 17 00:00:00 2001 From: John Tuttle Date: Thu, 19 May 2022 14:21:52 -0400 Subject: [PATCH] Update main Dockerfile golang base image to 1.17 Fixes CVE-2022-0778 and CVE-2022-1292. --- CHANGELOG.md | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 032928f..a4f23cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Security -- Update acceptance image Golang to 1.17 to fix CVE-2022-0778 and CVE-2022-1292. +- Update main and acceptance base images to Golang 1.17 to fix CVE-2022-0778 and CVE-2022-1292. [cyberark/summon#232](https://github.com/cyberark/summon/pull/232/) ## [0.9.1] - 2021-12-22 diff --git a/Dockerfile b/Dockerfile index 171dec7..8c1ada1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.15 +FROM golang:1.17 WORKDIR /summon