From 4b3e0f52bc8d60f01e9b0e2bf32b9599dce0804d Mon Sep 17 00:00:00 2001 From: Octavia Squidington III <90398440+octavia-squidington-iii@users.noreply.github.com> Date: Thu, 8 Sep 2022 15:40:24 -0700 Subject: [PATCH] fix: tools/code-generator/Dockerfile to reduce vulnerabilities (#16502) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE315-LIBTIRPC-2975614 - https://snyk.io/vuln/SNYK-ALPINE315-NCURSES-2952568 - https://snyk.io/vuln/SNYK-ALPINE315-NCURSES-2952568 - https://snyk.io/vuln/SNYK-ALPINE315-ZLIB-2434420 - https://snyk.io/vuln/SNYK-ALPINE315-ZLIB-2976173 Co-authored-by: snyk-bot --- tools/code-generator/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/code-generator/Dockerfile b/tools/code-generator/Dockerfile index cb3253f0393..d7b6b619990 100644 --- a/tools/code-generator/Dockerfile +++ b/tools/code-generator/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9.11-alpine3.15 as base +FROM python:3.11.0b5-alpine3.15 as base FROM base as builder